// JavaScript Document

			$(document).ready(function(){
				$('.bosz.peeka').hover(function(){
					$(".covera", this).stop().animate({top:'16px'},{queue:false,duration:300});
				}, function() {
					$(".covera", this).stop().animate({top:'0px'},{queue:false,duration:300});
				});
				$('.bosz.peeka').hover(function(){
					$(".coverb", this).stop().animate({top:'0px'},{queue:false,duration:300});
				}, function() {
					$(".coverb", this).stop().animate({top:'16px'},{queue:false,duration:300});
				});
			});
	


