$(document).ready(function(){



	$(".imagine").bind("mouseenter",function(){
		$('.overlay-displayed').hide();
	
		$(this).next().next().show().addClass('overlay-displayed');
		$(".imgprodus").attr("src", $(this).attr("src"));
//		window.scroll(0, 1000);
		try {
			$(".imgprodus").next('div').html($(this).parent().attr("title"));
		}
		catch(eroare) {

		}
    });
	$(".imagine-overlay").bind("mouseleave",function(){
		$(this).hide();
		$('.overlay-displayed').removeClass('overlay-displayed');
    });
});

