$(document).ready(function(){
	
	$('.veneer_search_home').fadeIn(2000);
	
	//$(".col .library, .col .portfolio, .col .trends, .col .veneer, .col .green, .col .procurment, .col .about, .col .contact").hover(function()
	$(".col a").children('div').hover(function()
	{
		//$(this).find('strong').addClass("hover").stop()
		$(this).find('div:last').stop()
			.animate({
				'top': '-20px'
			}, 400);
		} , function() {
		//$(this).find('strong').removeClass("hover").stop()
		$(this).find('div:last').stop()
			.animate({
				'top': '0px'
			}, 400);
		
	});
});
