
			$(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)
				$('.fe_holders').hover(function(){
					$(".pro_pull_nam", this).stop().animate({top:'140px'},{queue:false,duration:160});
				}, function() {
					$(".pro_pull_nam", this).stop().animate({top:'160px'},{queue:false,duration:160});
				});
			});
