//overlay fader
$(function() {	
	$(".overlay").fadeTo("fast", 0.0);
	$(".template-link > img").fadeTo(0, 1.0); //thank you IE ...
	$(".overlay").hover(function()	{	
		$(this).fadeTo("fast", 0.8);	
		}, function(){	$(this).fadeTo("fast", 0.0); 
	});	
});
//twitter/blog fades
$(function() {
	$(".fade").fadeTo("fast", 0.6); 
	$(".fade").hover(function()	{	
		$(this).fadeTo("fast", 1.0);	
		}, function(){	$(this).fadeTo("fast", 0.6); 
	});	
});
//Template Preview nav fades
$(function() {
	$(".nav > a:not(.activeSlide)").fadeTo("fast", 0.4); 
	$(".nav > a:not(.activeSlide)").hover(function()	{	
		$(this).fadeTo("fast", 1.0);	
	}, function(){ 	
		$(this).not(".activeSlide").fadeTo("fast", 0.4);
	});	
	
});	
//Template Preview nav fades, click fixes
$(function() {
	$(".nav > a").click(function()	{	
		$(this).fadeTo("fast", 1.0);
		$(".nav > a:not(.activeSlide)").fadeTo("fast", 0.4);
	});	
});	   