 $(document).ready(function() {
        $('.thumbleft').each(function() {
            $(this).hover(function() {
                $('.thumbleft .thumbsub a img').stop().animate({ opacity: 0.9 }, 200);
            },
           function() {
               $('.thumbleft .thumbsub a img').stop().animate({ opacity: 1.0 }, 200);
           });
        });
		$('.thumbright').each(function() {
            $(this).hover(function() {
                $('.thumbright .thumbsub a img').stop().animate({ opacity: 0.9 }, 200);
            },
           function() {
               $('.thumbright .thumbsub a img').stop().animate({ opacity: 1.0 }, 200);
           });
        });
    });

	
if (jQuery.browser.msie) {
  $(document).ready(function() {
        $(".thumb").css("width","103px");
    });
}