jQuery(document).ready(function() {  
   jQuery('#ypg411').click(function(e){
   	 	e.preventDefault();
   	 	jQuery('.ypg411').toggle("slow");   	 	
   });
   jQuery('.ypg411').hover(function(){
   
   },
   function(){
   		jQuery(this).hide("slow");
   });
   
   jQuery('#google-search').click(function(){
   		if(jQuery('#search-google').is(':checked')){
   			jQuery('#google-search-form').attr("action", "http://www.google.com/search");
   			//jQuery('#search').attr("disabled", true);
   		}
   		else if(jQuery('#search-kmts').is(':checked')){
   			jQuery('#google-search-form').attr("action", "/");
   			jQuery('#search').val(jQuery('#search-box').val());
   			//jQuery('#search-box').attr("disabled", true);
   		}
   		jQuery('#google-search-form').submit();
   });
});
