jQuery(function() {
				
	$('.dropdown').mouseenter(function (e) {
		$(this).find(".sub").fadeIn(100);
	});
	
	$('.dropdown').mouseleave(function (e) {
		$(this).find(".sub").fadeOut(100);
	});
	
	$('input.hintValue').each(function(i) {
		$(this).data('hint', $(this).attr('value'));
	});
	
	$('input.hintValue').focus(function() {
		var hint = $(this).data('hint');
		var value = $(this).attr('value');
		if (value == hint) {
			$(this).attr('value', '');
		}
	});
	$('input.hintValue').blur(function() {
		var hint = $(this).data('hint');
		var value = $(this).attr('value');
		if (value == '') {
			$(this).attr('value', hint);
		}
	});
});



