/**
 * Created by JetBrains PhpStorm.
 * User: atuzlukov
 * Date: 20.01.11
 * Time: 13:39
 * To change this template use File | Settings | File Templates.
 */
$(document).ready(function(){
	$(".item").mouseenter(function(){
		var el = $(this).find(".text");
		var el2 = el.clone()
		el2.find(".blue_top_hover").remove()
		var content = el2.html();
		var w = el.width();
		var h = el.height()*0.9;

		$(this).find(".blue_top_hover").css({
			
			width: "100%",
			height: 0

		}).html(content).animate({
			
			height: h
		}, 500);
	}).mouseleave(function(){
		$(this).find(".blue_top_hover").animate({
			height: 0
		}, 500, function(){ $(this).hide() });
	});
	
	/* Перейти на сайт по картинке*/
	$(".go_to_ducm").click(function(){
		document.location.href="http://www.ducm.ru";
		return false;
	});
	
});

