$(function(){
	// open links in new window when rel="external"
	$('a[rel=external]').click(function(e){
		open(this.href);
		e.preventDefault();
	});
	// submit contact form
	$("#contactForm").submit(function(e){
		e.preventDefault();
		$.ajax({
			url: "/assets/includes/FormLogic.php",
			type: "POST",
			data: $(this).serializeArray(),
			success: function(data){
				$("#formContainer").html(data)
			}
		});
	});
	$("a.rollover img").each(function() {
		this.srcOver = this.src.replace(/(\.[^.]+)$/, '-over$1');
		this.srcOut = this.src;
		preloadImg(this.srcOver);
	}).mouseover(function() {
		this.src = this.srcOver;
	}).mouseout(function() {
		this.src = this.srcOut;
	});
});

function preloadImg(image) {
	var img = new Image();
	img.src = image;
}


