$(function() {
	//remove link if empty pages.
	//$("ul li a[href*='dropdown']").attr('href', '#');
	
	//Clear form fields imput code...
	$("#sideForm :input").focus( function() {
		if ($(this).val() === $(this).attr('title')) {
			$(this).val("");
		}
	}).blur( function () {
		if ($(this).val() === "") {
			$(this).val($(this).attr("title"));
		}
	});
	
	//dropdown stuff
	$("#nav li").has("ul").hover( function() {	//if subnav exist add bottom border							
		$(this).css("border-bottom", "1px solid #bfbfbe");
	},
	function() {
		$(this).css("border", "none");
	});
	$("#nav li ul").hide().css("visibility", "visible");		
	$("#nav li a").hover(function(){ 
		$(this).next().fadeIn("fast").show().hover(function() {
			$(this).show();			
		},
		function() {	
			$(this).hide();
		});
	},
	function() {			
		$(this).next().hide();			
	});
	
	//Home Rotation
	$("#rotation").tnt_imageRotation({
		speed: 1250,
		delay: 5000
	});
});
