$(document).ready(function() {
	clearInput();
	subMenu();						
});

function subMenu() {
	$('.item').hover(function() {
		$(this).css('color','f8b38c').children('.submenu').show();						
	}, function() {
		$(this).css('color','fff').children('.submenu').hide();						
	});
}

function clearInput() {
	$('input.fade').focus(function() {
	   $(this).select();
	   $(this).prev().fadeTo(150, 0);
	   $(this).keydown(function() {
		   $(this).css('background-repeat', 'repeat');                  
	   });
	});
	$('input.fade').blur(function() {
	   if($(this).val() == '' ) {
		   $(this).css('background-repeat', 'no-repeat');
		   $(this).prev().fadeTo(150, 1);
	   }
	});
	$('input.fade').each(function(){
	   if($(this).val() != '') {
		   $(this).css('background-repeat', 'repeat');
	   };
	});
}
