/* - - - - - - - - - - - - - - - - - - - - -

Title : Pipeline Training Australia
Author : Jarrod Strachan

Description : Custom Javascript jQuery Includes

- - - - - - - - - - - - - - - - - - - - - */

$(function() {
		
	// Fix PNG images in IE6
	$("#headerPhoto img").pngfix();
	
	$("#fadePhotos").innerfade({
		timeout: 10000,
		speed: 5000,
		type: 'random_start'
	});
	
	$("#form1").validate({
		errorLabelContainer: $("#form1 div.error")
	});
	
	// validate the form when it is submitted
	var container = $('div.errors');
	
	$("#contactForm").validate({
		errorContainer: container,
		errorLabelContainer: $("ol", container),
		wrapper: 'li',
		meta: "validate"
	});
	
	/* Semantic External Links */
	$("a[@rel$='external']").click(function(){
	 this.target = "_blank"});
	
});

