jQuery.noConflict();
(function($) {
  $(function() {
    // round our element corners
    jQuery(".visitorName, .pageOwnerName, .mostPopularHeading, .statementText").corner({
        autoPad: true,
        tl: { radius: 4 },
        tr: { radius: 4 },
        bl: { radius: 4 },
        br: { radius: 4 }
    });
    
   /* var containerHeight = jQuery("#compareChoicesContainer").height();
    jQuery("<div style='background: orange;'></div>")
        .height(containerHeight)
        .width(4)
        .css({
            position: 'absolute', 
            top: '600px', 
            left: '155px'})
        .prependTo("#compareChoicesContainer");
    
     jQuery("<div style='background: white;'></div>")
        .height(containerHeight)
        .width(4)
        .css({
            position: 'absolute', 
            top: '630px', 
            left: '260px'})
        .prependTo("#compareChoicesContainer");*/
  });
})(jQuery);