$(document).ready(function() {
	// Clear and re-add the default value in the footer form
	$("#footer input.input-text").focus(function() { 
		if ($(this).val() == "Enter your email...") {
			$(this).val("");
		}
	});
	
	$("#footer input.input-text").blur(function() { 
		if ($(this).val() == "") {
			$(this).val("Enter your email...");
		}
	});
	
	$('body.ie div.dock ul li a span').click(function() {
		window.location = $(this).parent('a').attr('href');
	});
});
