// JavaScript Document
$(document).ready(function(){
	// General Listeners
	$("a.external").attr("target","_blank");
	// Contact Form Validation
	var required_bgcolor = "#b73e3e";
	var field_bg_color = $(".required_form .required_field").css("background-color");
	$(".required_form").submit(function(){
		$(this).contents().find(".required_field").each(function(){
			if($(this).val() != ""){
				$(this).addClass("filled");
				$(this).animate({ backgroundColor: field_bg_color }, { duration: 200 });
			}else{
				$(this).removeClass("filled");
				$(this).animate({ backgroundColor: required_bgcolor }, { duration: 200 });
				var targetOffset = $(this).offset().top;
				$('html,body').animate({scrollTop: targetOffset}, { ducation: 1000});
				return false;
			}
		});
		if($(this).contents().find(".required_field").size() == $(this).contents().find(".filled").size()){
			return true;
		}else{
			return false;
		}
	});
});
