// JavaScript Document
$(document).ready(function(){
				$('.programs1.captionfull, .programs.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'260px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'300px'},{queue:false,duration:160});
				});				
			});
