/***

Virtual


***/

$(function(){
	// navigation
	$('#home').show();
	// set opacitiy
	$(".nav-image").hover(function(){
	    $(this).stop().animate({"opacity": 0.7});
	},function(){
	    $(this).stop().animate({"opacity": 1});
	});
	
	$('#video').show();
	
	// display options
	$('ul.nav li .hash, h1 a').click(function(event) {
	    event.preventDefault();
	    $('.v-container').fadeOut('fast');
	    $('div.general:visible').fadeOut('fast');
	    window.location.hash = this.hash;
	    $($(this).attr('href')).fadeIn('slow');
	});
	if(window.location.hash) {
		if(window.location.hash != '#video') 
		{
			$('#video').hide();
		}
		else
		{
			document.title = 'Video | Joyce Mercedes';
			
		}
	   	
	   	$(window.location.hash).fadeIn('slow');
	   	
	   	if(window.location.hash == '#about')
	   	{
	   		$(document).attr('title', 'About | Joyce Mercedes');
	   		//document.title = 'About | Joyce Mercedes';
	   	}
	   	if(window.location.hash == '#contact')
	   	{
	   		document.title = 'Contact | Joyce Mercedes';
	   	}
	   	if(window.location.hash == '#shop')
	   	{
	   		document.title = 'Shop | Joyce Mercedes';
	   	}
	}

});


/***

Spry


***/

