jQuery(document).ready(function($){
								
	var remote_url = "http://www.mariellarosati.it/"
	
	//$.fn.supersized.options = { slides : [{image : '/mariellarosati/i/bg/1440x900.jpg' }]};
	$.fn.supersized.options = { slides : [{image : remote_url +'/i/bg/'+$('#bg-page').attr('class')+'.jpg' }]};
	$('#supersized').supersized(); 
	
	$('nav li').each(function(){
		$(this).append('<span></span>')
		var s = $(this).find('span')
		var a = $(this).find('a')
		s.css({'display':'block','opacity':0})
		if(!a.hasClass('active')) {
			$(this).hover(function(){
				a.stop().animate({'top':'10px'},400,'easeOutQuint')
				s.stop().animate({'opacity':1},400,'easeOutQuint')
			},function(){
				a.stop().animate({'top':'0'},400,'easeOutQuint')
				s.stop().animate({'opacity':0},400,'easeOutQuint')
			})
		}
	})
	
	$('#gallery_home li').each(function(){
		var s = $(this).find('.thumb span')
		var a = $(this).find('a')
		s.css('opacity',0).show()
		$(this)
		.hover(function(){
			s.stop().animate({'opacity':0.7},400,'easeOutQuint')
			a.stop().animate({'color':'#333333'},400,'easeOutQuint')
		},function(){
			s.stop().animate({'opacity':0},400,'easeOutQuint')
			a.stop().animate({'color':'#9c9999'},400,'easeOutQuint')
		})
		.click(function(){
			location.href = a.attr('href')
		})
	})
})
