// JavaScript Document// CONTACT FORM$(document).ready(function() { 	var options = { 		target: '#alert'		}; 	$('#contactForm').ajaxForm(options); 	}); $.fn.clearForm = function() {	return this.each(function() {		var type = this.type, tag = this.tagName.toLowerCase();		if (tag == 'form')			return $(':input',this).clearForm();		if (type == 'text' || type == 'password' || tag == 'textarea')			this.value = '';		else if (type == 'checkbox' || type == 'radio')			this.checked = false;		else if (tag == 'select')			this.selectedIndex = -1;		});	};// NAVIGATION$(function() {	$("ul#page-bar li").append("<span></span>");	// set opacity to nill on page load	$("ul#page-bar span").css("opacity","0");	// on mouse over	$("ul#page-bar a").hover(function () {		// animate opacity to full		$(this).next().stop().animate({opacity: 1}, "slow");		},	// on mouse out	function () {		// animate opacity to nill		$("ul#page-bar span").stop().animate({opacity: 0}, "slow");		});	});// IMG SLIDESHOW$(function(){	$('#slideshow img:gt(0)').hide();	setInterval(function(){		$('#slideshow :first-child').fadeOut(1000)			.next('img').fadeIn(1000)			.end().appendTo('#slideshow');},		5000);	});
