jQuery.noConflict();


jQuery(function() {
	jQuery('div#content input,div#content textarea,div#content select,form#header-search input,form#header-login input').hover(
		function() {
			jQuery(this).css('background-color','#FFF');
		},
		function() {
			jQuery(this).css('background-color','#FFF');
		}
	)
});