$(document).ready(function() {

// ========================================================================= 
//	MAIN NAVIGATION
// ========================================================================= 

	$("#nav ol li").prepend("<span></span>"); //Throws an empty span tag right before the a tag

	$("#nav li").hover(function() {	//On hover...
		$(this).find("span").stop().animate({
			marginTop: "-46" //Find the <span> tag and move it up 46 pixels
		}, 150);
	} , function() { //On hover out...
		$(this).find("span").stop().animate({
			marginTop: "0"  //Move the <span> back to its original state (0px)
		}, 150);
	});
	
	
// ========================================================================= 
//	HOME CYCLE SLIDESHOWS
// ========================================================================= 

	$('#slideshow').cycle({
		fx:    'fade', 
		speed:  1000,
		timeout:4000
	 });

});