//javascript
jQuery(document).ready(function($){  
	
	$(".hover").hover(function(){
  		this.src = this.src.replace("_off","_on");
 	}, function(){
  		this.src = this.src.replace("_on","_off");
	});
	
	$('.slidedown').hover(function(){
		$("img", this).stop().animate({top:'318px'},{queue:false,duration:500});
		//$("img", this).stop().animate({ "opacity": 0 });
	}, function() {
		$("img", this).stop().animate({top:'0px'},{queue:false,duration:500});
		//$("img", this).stop().animate({ "opacity": 1 }, 700);
	});	
	
	$('.slidedown_work').hover(function(){
		$("img", this).stop().animate({top:'250px'},{queue:false,duration:500});
		//$("img", this).stop().animate({ "opacity": 0 });
	}, function() {
		$("img", this).stop().animate({top:'0px'},{queue:false,duration:500});
		//$("img", this).stop().animate({ "opacity": 1 }, 700);
	});						
				
});