$(document).ready(function(){
	//homepage slideshow initator
    //$('.slideshow').cycle({
	//	fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...	
	//});
 	//yet another stupid lightbox
 	$('.imageGallery a').lightBox();
 	
 	//for the about this page in backin of wearyhead
	$('.close').click(function(){
		$('#direction').slideUp('fast');
	});
	$('.directionHelp a').click(function(){
		$('#direction').slideDown('fast');
	});
	
});