/*button hover*/
 (function($) {
	$.fn.buttonhover = function(opt) {
	       $(":submit,:button").hover(
               function(){  $(this).css("backgroundColor", "#6382b1");},
               function(){ $(this).css("backgroundColor", "");}
       )
	}	
	})(jQuery);	
 $(document).ready(function() {
	$("form").buttonhover();	
 })	
