$(document).ready(function () {	

$("#tab li ul").parent().find('span').append("<span class='sf-sub-indicator'>How to Quit Adderall</span>");
$("#tab li ul").parent().find('span').append("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;");
	$('#tab li').hover(
		function () {
			//show its submenu
			
			$(this).addClass("dropdown");
			$('ul', this).slideDown(100);
	

		}, 
		function () {
			//hide its submenu
			 
            $(this).removeClass("dropdown");
			$('ul', this).slideUp(100);			
		}
	);
	
		$('input, textarea').each(function () {
		if ($(this).val() == '') {
//			$(this).val($(this).attr('name'));
		}
	}).focus(function () {
		$(this).removeClass('inputerror');
		if ($(this).val() == $(this).attr('name')) {
			$(this).val('');
		}
	}).blur(function () {
		if ($(this).val() == '') {
//			$(this).val($(this).attr('name'));
		}
	});
	
});
