
jQuery(document).ready(function($) {
								  
	
		
        
        <!-- ////Scalable buttons hover script--instantiates css property to accomplish rollover effect on the button container div 
		///////////////////////////-->

		$(function(){ 
			
			<!--small white button -->		 
			$(".GenGreyButton").hover(
			  function () {
				$(this).css("background-position","0 -22px");
			  }, 
			  function () {
				$(this).css("background-position","0 0px");
			  }
			);
			
          });
		
        
		  

});
