var ImgIdx = 2;
var t=window.setInterval("Fly(false);", 1000);


 



$(document).ready(function(){
	$("#next").click(function(){
		$(".Slash").ImageSwitch({Type:$(this).attr("rel"), 
									NewImage:"banner"+ImgIdx+".png", 
									Direction:"DownTop", 
									EffectOriginal: false
									});
		ImgIdx++;
		if(ImgIdx>5) ImgIdx = 1;
	});		
		$("#prev").click(function(){
		$(".Slash").ImageSwitch({Type:$(this).attr("rel"), 
									NewImage:"banner"+ImgIdx+".png", 
									Direction:"DownTop", 
									EffectOriginal: false
									});
		ImgIdx--;
		if(ImgIdx==0) ImgIdx = 5;
	});		
		
});




/* ================================================================ 

This copyright notice must be untouched at all times.

Copyright (c) 2009 Stu Nicholls - stunicholls.com - all rights reserved.

=================================================================== */

$(document).ready(function(){



$(".hidden").hide();

$(".show").html("[more]");



$(".show").click(function() {

if (this.className.indexOf('clicked') != -1 ) {

		$(this).prev().slideUp(500);

		$(this).removeClass('clicked')

		$(this).html("[more]");

		}

		else {

		$(this).addClass('clicked')

		$(this).prev().slideDown(500);

		$(this).html("[less]");

		}

});



});



