/*-----------------------------------------------------------------------------
Web Site: Buying Solution

$CreatedDate: 2009-09-07 $
$Author: tanyas $

$Revision$

$LastChangedDate$
$LastChangedBy$
-----------------------------------------------------------------------------*/
jQuery(document).ready(function(){
	jQuery('input.submit').hover(function() {
	  jQuery(this).addClass('hover');
	}, function() {
	  jQuery(this).removeClass('hover');
	}); 
});