jQuery(function(){
	jQuery('ul.sf-menu').superfish({
    autoArrows:  false             
	});
});

jQuery(function(){
	// clear input on focus
	jQuery('.clearMeFocus').focus(function(){
		if(jQuery(this).val()==jQuery(this).attr('title')){
			jQuery(this).val('');
			jQuery(this).addClass('text_edit');
		}
	});
	
	// if field is empty afterward, add text again
	jQuery('.clearMeFocus').blur(function(){
		if(jQuery(this).val()==''){
			jQuery(this).val(jQuery(this).attr('title'));
			jQuery(this).removeClass('text_edit');
		}
	});	
});

