$(function() {
	
	$("#home a span, #about a span, #news a span, #want_list a span, #sell_us a span, #get_graded a span, #faq a span, #contact a span").css("opacity","0");
	$("li a.active span").attr("style", "");

	$("#home a.active span, #about a.active span, #news a.active span, #want_list a.active span, #sell_us a.active span, #get_graded a.active span, #faq a.active span, #contact a.active span").css("opacity","1");

	$("#home a span, #about a span, #news a span, #want_list a span, #sell_us a span, #get_graded a span, #faq a span, #contact a span").hover(function () {

		$(this).stop().animate({ opacity: 1.0 }, "fast"); 

	},

	function () {

		$(this).stop().animate({ opacity: 0 }, "fast");

	});
	
	$("#nav_top a, #ft_nav_top a, #ft_nav_btm a").css("opacity","0.5");

	$("#nav_top a, #ft_nav_top a, #ft_nav_btm a").hover(function () {

		$(this).stop().animate({ opacity: 1.0 }, "fast"); 

	},

	function () {

		$(this).stop().animate({ opacity: 0.5 }, "fast");

	});
	
	$("#view_all_listings, .submit, .checkout, .update, .next_page, .prev_page, .cart").css("opacity","0.75");

	$("#view_all_listings, .submit, .checkout, .update, .next_page, .prev_page, .cart").hover(function () {

		$(this).stop().animate({ opacity: 1.0 }, "fast"); 

	},

	function () {

		$(this).stop().animate({ opacity: 0.75 }, "fast");

	});
	
	$("#products .product_image:nth-child(4n+4)").css("margin", "0 0 10px 0");
	
});


