jQuery(document).ready(function($){
	$('nav li,.pzone').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({'color':'#ffffff'})
				s.stop().animate({'opacity':1},500,'easeOutQuint')
			},function(){
				
				a.stop().animate({'color':'#7a7777'})
				s.stop().animate({'opacity':0},400,'easeOutQuint')
			})
		}else{
				s.stop().css({'opacity':1})
		}
	})
	
	$('#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')
		})
	})
})
