$(function(){
	$("input[type='text'],input[type='password'],textarea").css({"border":"1px solid #cccccc","padding":"3px"});
	$("input[type='text'],input[type='password'],textarea").focus(function(){
		$(this).css({"border":"1px solid #1c3f95"}); 
	});
	$("input[type='text'],input[type='password'],textarea").blur(function(){
		$(this).css({"border":"1px solid #cccccc"});
	});
	$("#emailSubscribe").focus(function(){
		if( $(this).val() == "Your Email Address" ){
			$(this).val("").css("color","#4f4f4f");
		}
	});
	$("#emailSubscribe").blur(function(){
		if( $(this).val() == "" ){
			$(this).val("Your Email Address").css("color","#a9a9a9");
		}
	});
	$(".validateMe").validate();
	$(".menu ul ul li:first-child").addClass("dd_top");
	$(".menu ul ul li:last-child").addClass("dd_bottom");
	$("#servicesTable tr:even").css("background","#f5f5f5");
});
