
$(document).ready(function(){
	function hoverElem(elem, cl) {
		$(elem).mouseover(function(){
			$(this).addClass(cl);
		}).mouseout(function(){
			$(this).removeClass(cl);
		});
	};

	$("div.thumb").mouseover(function(){
		//$(this).children("div.right").children("div").children("div").addClass("hover");
		$(this).children("div.right").children("div.image").children("div").stop().animate({opacity: 0.7},{duration:1000});
	}).mouseout(function(){
		$(this).children("div.right").children("div.image").children("div").stop().animate({opacity: 1},{duration:1000});
		//$(this).children("div.right").children("div").children("div").removeClass("hover");
	});
	
	$("div.thumblast").mouseover(function(){
		//$(this).children("div.right").children("div").children("div").addClass("hover");
		$(this).children("div.right").children("div.image").children("div").stop().animate({opacity: 0.7},{duration:1000});
	}).mouseout(function(){
		$(this).children("div.right").children("div.image").children("div").stop().animate({opacity: 1},{duration:1000});
		//$(this).children("div.right").children("div").children("div").removeClass("hover");
	});

});

