$(document).ready(function() {

	$("#primary_nav a, #free_ideas a").hover(
							  
		function() {
			if (!$(this).is(".on a")) {
				$(this).fadeTo("fast", 0);
			}
		},
		function() {
			$(this).fadeTo("normal", 1);
		}					  
	);
	
	/*
	$("#blocks li a img").each(
							 
		function() {
			$(this).fadeTo("fast", .6);
		}
	);
	*/
	
	$("#blocks li a img").hover(
		
		function() {
			$(this).fadeTo("fast", 1);	
		},
		function() {
			$(this).fadeTo("normal", .6);
		}
	);
	
	$("#index_thumbs a img").hover(
		
		function() {
			$(this).animate({
				
				height: "92px",
				paddingTop: "0",
				width: "142px"
							
			}, "normal");
		},
		function() {
			$(this).animate({
				
				height: "60px",
				paddingTop: "32px",
				width: "92px"
							
			}, "normal");			
		}
	);
});
