$(document).ready(function(){ 
	
	$('a.more span.arrow').css({backgroundPosition:'6px 8px'}),
	$('#subscribe_form .subscribe_but, a.more1').css({top:0});
	
	$('a.more').hover(
			function(){$('span.arrow',this).css({backgroundPosition:'6px -17px'}).stop().animate({backgroundPosition:'12px -17px'},150, function(){$(this).animate({backgroundPosition:'6px -17px'},150)})},
			function(){$('span.arrow',this).css({backgroundPosition:'6px 8px'}).stop()}
		);
	
	$('#subscribe_form .subscribe_but, a.more1').hover(
		function(){
			$(this).stop().animate({top:'-4px'},150,function(){$(this).animate({top:0},150)})
		},
		function(){}
		);
		
});

