 $(document).ready(function() {
        $('.thumbleft').each(function() {
            $(this).hover(function() {
                $('.thumbleft .thumbsub a img').stop().animate({ opacity: 0.92 }, 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.92 }, 200);
            },
           function() {
                $('.thumbright .thumbsub a img').stop().animate({ opacity: 1.0 }, 200);
           });
        });
		$('#leftside').each(function() {
            $(this).hover(function() {
				$('#leftside').stop().animate({ opacity: 1.0 }, 200);
            },
           function() {
                $('#leftside').stop().animate({ opacity: .70 }, 200);
           });
        });
		$('#rightside').each(function() {
            $(this).hover(function() {
                $('#rightside').stop().animate({ opacity: 1.0 }, 200);
            },
           function() {
                $('#rightside').stop().animate({ opacity: .70 }, 200);
           });
        });
    });
 
 

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