$(document).ready(function(){
	$("#formSubscribe input[type=text]").each(function(){
		var holder = $(this).val();
		$(this)
		.focus(function(){
			if($(this).val() == holder){
				$(this).val('');
			}
		})
		.blur(function(){
			if($(this).val() == '' || $(this).val() == ' '){
				$(this).val(holder);
			}
		});
	});
	$("#bannersa, #bannersb").innerfade({
			animationtype: 'fade',
			speed: 'slow',
			timeout: 4000,
			type: 'sequence',
			containerheight: '392px'
	});
	$("#bannersb").hover(function(){
		$(".ttGears").show();
	}, function(){
		var hide = true;
		$(".ttGears").hover(function(){
			hide = false;
		},function(){
			$(".ttGears").hide();
		});
		setTimeout(function(){
			if(hide){ $(".ttGears").hide(); }
		}, 10);
	});
	$("#bannersa").hover(function(){
		$(".ttWinch").show();
	}, function(){
		var hide = true;
		$(".ttWinch").hover(function(){
			hide = false;
		},function(){
			$(".ttWinch").hide();
		});
		setTimeout(function(){
			if(hide){ $(".ttWinch").hide(); }
		}, 10);
	});
});
function valSub(){
	if($("#email").val() == '' || $("#email").val() == ' ' || $("#email").val() == 'Enter Email'){ alert("Please enter your email address"); return false; }
	return true;
}
