$(document).ready(function() {			
	//Animations for the main menu
	$("#main_menu li").each(function()
	{
		$(this).hover(
		function()
		{
			$(this).find("span").animate({
				opacity: 1.0,
				top: -17 // how far up the text within the menu will animate
			}, 350, "easeOutBack");
			$(this).find("img").animate({
				top: -8 // how far up the image within the menu will animate
			}, 250, "easeOutBack");
		},
		function()
		{
			$(this).find("span").animate({
				opacity: 0.0,
				top: 0
			}, 100);
			$(this).find("img").animate({
				top: 0
			}, 350, "easeOutBack");
		});
	});
				
	// Coda Slider Effect			
	$("#scroll").scrollable({ circular: true, mousewheel: true, keyboard: "static" }).navigator({
		navi: "#main_menu", // defining main_menu as the navigation.
		naviItem: "a",		
		activeClass: "current", // adds "current" to the active element class
		history: true // enables the history to be stored
	});
				
	
});
