// Put all your lovely jQuery / Javascript goodies right down here.



$('.dykItemInfo')
.css('display','none')
.css('position','absolute')
.css('top','10')
.css('left','0')
.css('z-index','200')
.css('width','100%');

$(window).load(function() {
		
		
	$('.dykItem').hover(

		function (ev) {
			$(this)
			.find('.dykItemInfo')
			.stop(true, true)
			.css('display', 'block')
			.animate({ opacity: 0 }, 0)
			.animate({ opacity: 1, top: "-10px" }, 'fast');

		}, 
		function () {
			$(this)
			.find('.dykItemInfo')
			.stop(true, true)
			.animate({ opacity: 0, top: "10px" }, 'fast');
		}
	);

			
		
});
