$(function(){
	/* input */
	$("input.clearme").live('focusin', function(){
		$(this).addClass('iamclear');
		$(this).removeClass('clearme');
			
		if (typeof text == 'undefined' || $(this).val() == text) {
			text = $(this).val();
			$(this).val('');
		}
	});
		
	$("input.iamclear").live('focusout', function(){
			$(this).removeClass('iamclear');
			$(this).addClass('clearme');
			if (!$(this).val()) {
				$(this).val(text);
			}
	});
	
	/* menu hover */
	$('.menu a').hover(
		function(){
			$(this).parent().addClass('hover');
		},
		function(){
			$(this).parent().removeClass('hover');
		}
	);
	
});

