

$(document).ready(function() {
	$("#open_shopindex").hover(function(){
	$(this).css({ background: "url(/images/nav_shop.jpg) no-repeat 0 -120px" })
	},function(){
	$(this).css({ background: "url(/images/nav_shop.jpg) no-repeat 0 0" })
	});
	$("#shopindex").css("display","none");
	$("#open_shopindex").click(function(){
		$("#shopindex").slideToggle();
		});
});



$(document).ready(function() {
	$("#open_siteindex").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$("#siteindex").css("display","none");
	$("#open_siteindex").click(function(){
		$(this).next().slideToggle("fast");
		});
});
