document.write ('<link href="css/js_on.css" rel="stylesheet" type="text/css" />'); //css styl pro sliding-box

$(document).ready(function(){
				//Full Caption Sliding (Hidden to Visible)
				$('.ref_img').hover(function(){
					$(".cover", this).stop().animate({top:'108px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'260px'},{queue:false,duration:160});
				});
			});