jQuery.noConflict();
jQuery(document).ready(function(){
	
	jQuery("#leftSection .middle img").css("opacity","0.5");
	
	jQuery("#leftSection .middle").hover(
      function () {
        jQuery(this).find('img').animate({ 
			opacity: 1
		 }, 500 );
      }, 
      function () {
        jQuery(this).find('img').animate({ 
				opacity: 0.5
		}, 500 );
      }
    );
});
