jQuery(document).ready(function($){
	$("div#mainContent").mouseenter(function(){
   	$(".tnImg").animate({
       width: '396px',
       opacity: 0.7,
       height: '123px',	
       }, 200 );
   });

   $("img.tnImg").hover(
     function () {
       $(this).animate({
       width: '435px',
       opacity: 1.0,
       height: '135px',	
       }, 200 );
     }, 
     function () {
       $(this).animate({
       width: '396px',
       opacity: 0.7,
       height: '123px',	
       }, 200 );
     }
   );
});



