// JavaScript Document
$(document).ready(function(){	
/* Media */
	$('#homeFeatures li img').fadeTo(500, 0.3);	
	$('#homeFeatures li img').hover(function(){
		$(this).animate({opacity: 1.0},500);							 
	},function(){
		$(this).animate({opacity: 0.3},500);				 
	});
	
/* Right Links */	
	/* Animate the side links and feature spots */
	$('#rightLinks').animate({opacity : '0.8'},500);
	$('#rightLinks').hover(function(){
		$('#rightLinks').animate({opacity : '1.0'},500);
	},function(){
		$('#rightLinks').animate({opacity : '0.8'},1000);
	});
	/* Close and open buttons */
	$('a.closeFeature').click(function(){
		$('#featureSpot').animate({right : '-960px'},500);
		$('#rightLinks').animate({right : '-180px'},500);
		$('a.closeFeature, a.openFeature').toggle();
	});
	$('a.openFeature').click(function(){
		$('#featureSpot').animate({right : '-960px'},500);
		$('#rightLinks').animate({right : '-1px'},500);
		$('a.closeFeature, a.openFeature').toggle();
	});
	/* Feature spots */	
	$('a.about').click(function(){	
		$('#about, #about img, #profile, #profile img, #events, #events img, #discover, #discover img, #win, #win img, #references, #references img').fadeOut(500);
		$('#rightLinks').animate({right : '-1px'},500);
		$('#featureSpot').animate({right : '-960px'},500, function(){
			$('#about, #about img').fadeIn(1000);
		});
		$('#featureSpot').animate({right : '200px'},500);
	});	
	$('a.profile').click(function(){
		$('#about, #about img, #profile, #profile img, #events, #events img, #discover, #discover img, #win, #win img, #references, #references img').fadeOut(1000);
		$('#rightLinks').animate({right : '-1px'},500);
		$('#featureSpot').animate({right : '-960px'},500, function(){
			$('#profile, #profile img').fadeIn(1000);
		});
		$('#featureSpot').animate({right : '200px'},500);
	});	
	$('a.events').click(function(){	
		$('#about, #about img, #profile, #profile img, #events, #events img, #discover, #discover img, #win, #win img, #references, #references img').fadeOut(1000);
		$('#rightLinks').animate({right : '-1px'},500);
		$('#featureSpot').animate({right : '-960px'},500, function(){
			$('#events, #events img').fadeIn(1000);	
		});
		$('#featureSpot').animate({right : '200px'},500);
	});
	$('a.discover').click(function(){		
		$('#about, #about img, #profile, #profile img, #events, #events img, #discover, #discover img, #win, #win img, #references, #references img').fadeOut(1000);
		$('#rightLinks').animate({right : '-1px'},500);
		$('#featureSpot').animate({right : '-960px'},500, function(){
			$('#discover, #discover img').fadeIn(1000);	
		});
		$('#featureSpot').animate({right : '200px'},500);
	});
	$('a.win').click(function(){		
		$('#about, #about img, #profile, #profile img, #events, #events img, #discover, #discover img, #win, #win img, #references, #references img').fadeOut(1000);
		$('#rightLinks').animate({right : '-1px'},500);
		$('#featureSpot').animate({right : '-960px'},500, function(){
			$('#win, #win img').fadeIn(1000);
		});
		$('#featureSpot').animate({right : '200px'},500);
	});
	$('a.references').click(function(){		
		$('#about, #about img, #profile, #profile img, #events, #events img, #discover, #discover img, #win, #win img, #references, #references img').fadeOut(1000);
		$('#rightLinks').animate({right : '-1px'},500);
		$('#featureSpot').animate({right : '-960px'},500, function(){
			$('#references, #references img').fadeIn(1000);
		});
		$('#featureSpot').animate({right : '200px'},500);
	});
});
