jQuery.noConflict();
jQuery(document).ready(function(){
jQuery('.mainnav li:not(.current) a')
	.css( {backgroundPosition: "0 36px"} )
	.mouseover(function(){
		jQuery(this).animate(
			{backgroundPosition:"(0 72px)"}, 
			{duration:250})
		})
	.mouseout(function(){
		jQuery(this).stop().animate(
			{backgroundPosition:"(0 36px)"}, 
			{duration:250})
		})

jQuery('.j_clearonfocus').focus(function(){
 jQuery(this).val('');
})

})