(function($){
	$.fn.styleForm = function() {
		jQuery("label", this).hide();
		jQuery("input", this).focus(function () {
         $(this).css('background-image', 'none');
    });
	};
})(jQuery);

$(document).ready(function(){ 
        $("ul.sf-menu").superfish({
			autoArrows:  false,
			pathClass:  'current',
			pathLevels: 2
			
		}); 
	$("#login-form").styleForm();
	$("#newsletter").styleForm();
    }); 
 

		  

