jQuery(document).ready(function() {	
		
		//On Click Search Button
		$("input.searchBtn").css({'background':'url(../images/searchBtn.png) no-repeat 0 0'});
	$("input.searchBtn").mouseenter(function(){
			$(this).css({'background':'url(../images/searchBtn.png) no-repeat 0 -50px'});
		}).mouseout(function(){
			$(this).css({'background':'url(../images/searchBtn.png) no-repeat 0 0'});
		}).mouseup(function(){
		  $(this).css({'background':'url(../images/searchBtn.png) no-repeat 0 -50px'});
		}).mousedown(function(){
		  $(this).css({'background':'url(../images/searchBtn.png) no-repeat 0 -100px'});
		});	

		//On Click Follow Button
		$(".followBtn input").mouseenter(function(){
			$(this).css({'background':'url(../images/followBtn.png) no-repeat 0 -50px'});
		}).mouseout(function(){
			$(this).css({'background':'url(../images/followBtn.png) no-repeat 0 0'});
		}).mouseup(function(){
		  $(this).css({'background':'url(../images/followBtn.png) no-repeat 0 -50px'});
		}).mousedown(function(){
		  $(this).css({'background':'url(../images/followBtn.png) no-repeat 0 -100px'});
		});
		
		
});
