	document.write('<script type="text/javascript" src="'+'https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js'+'"></scr'+'ipt>');
	
	window.onload = function() {
		$(document).ready(function() { accordian.init(); });
	};
	
	var accordian = {
		curframe: null, timer: 250, delay: null,
		
		init: function() {
			for (var i=1; i<5; i++) {
				$('#Step0'+i).hover(function(){ accordian.action($(this)); }, function(){ return; });
			}
			this.slide($('#Step01'));
		},
		action: function(oObj) {
			clearTimeout(this.delay);
			this.delay = setTimeout(function(){ accordian.slide(oObj); }, this.timer);
		},
		slide: function(oObj) {
			if (this.curframe) {
				if (oObj.attr('id') == this.curframe.attr('id')) { return; }
				this.curframe.animate({width:64},'medium');
				this.curframe.find('div:eq(0)').removeClass('titleon').addClass('titleoff');
			}
			
			this.curframe = oObj;
			this.curframe.animate({width:414},'medium');
			this.curframe.find('div:eq(0)').removeClass('titleoff').addClass('titleon');
		}
	};





function validate_contactForm ( )
{
    valid = true;

    if ( document.contactForm.name.value == "" )
    {
        alert ( "Please fill in your name" );
        valid = false;
    }

    else if ( document.contactForm.email.value == "" )
    {
        alert ( "Please fill in your email" );
        valid = false;
    }
	
    else if ( document.contactForm.subject.value == "" )
    {
        alert ( "Please fill in your message subject" );
        valid = false;
    }
	
    else if ( document.contactForm.comments.value == "" )
    {
        alert ( "Please fill in your comments" );
        valid = false;
    }
	
    return valid;
}
