
	$(document).ready(function(){
		//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
		//Caption Sliding (Partially Hidden to Visible)
// 		$('.contact_item.caption').hover(function(){
// 			$(".cover", this).stop().animate({top:'80px'},{queue:false,duration:160});
// 		}, function() {
// 			$(".cover", this).stop().animate({top:'155px'},{queue:false,duration:160});
// 		});

		//Search input - on click clear value "hledej" and add class with another text color
		$('#reset').click(function(){
			$('#reset').val('sssssssssssssssssss');
// 			$('#search').addClass("search_color");
		});
	});
