// NORMAL RULES

$(document).ready(function(){
	
	// DROPDOWNS

	$("div.dropdown ul li:last-child").addClass('last');
	$('#navigation li a').hover(
		function(){
			$('#navigation li a').css({backgroundPosition: '0px 0px'});
			$(this).css({backgroundPosition: '0px -35px'});	
			$('.dropdown').stop(true, true).fadeOut(100);
			dd_name = $(this).attr("id");
			dd_name = dd_name.replace("_link","_dd");
			dd_selector = "div#"+dd_name;
			$(dd_selector).stop().fadeIn(200);
		}, 
		function(){}
	);	
	
	$("#navigation_container").hover(
		function(){},
		function(){
			$('.dropdown').stop(true, true).fadeOut(100);
			$('#navigation li a').css({backgroundPosition: '0px 0px'});			
		}
	);
	
	
	// GENERAL FORM RULES							 	
	
	if ($("#request_info_form").hasClass("body_form") || $("#resume_submittal_form").hasClass("body_form")){
		
		$.getScript('/scripts/validate_rules.js');
		
		var count = 10;
		countdown = setInterval(function(){
			$("#timer").html("Please wait " + count + " seconds before you submit!");
			if (count == 0) {
				$('#timer').remove();
				$("#submit_container").html('<a href="#" class="submit_button ">Submit</a>');
				$(".submit_button").fadeIn('slow');
			}
			count--;
		}, 1000);
		
		$("a.submit_button").live('click', function() {
			$(this).parents("form").submit();
			return false;
		});
	}
	
	
	if ($("div.dvSearch")){
		
		// REMOVE : AFTER STRONG IN KEYWORD SEARCH
		
		dv_1_contents = $("div#dv_1").html();
		dv_1_contents = dv_1_contents.replace(': <br>', "");
		dv_1_contents = dv_1_contents.replace('Keywords', "Keywords:");
		$("div#dv_1").html(dv_1_contents);
	
		// REMOVE INLINE STYLE ON SELECT REGION
		$("#ctl00_ContentPlaceHolder1_disc_lstDisciplineIDList").removeAttr("style");
		
	}
	
});
