$(document).ready(function(){
	$('#home_revolving').innerfade({
		speed: 'slow', 
		timeout: 4000, 
		type: 'sequence', 
		containerheight: '316px' 
	});	
	$(document).pngFix();	
	$('#iselect_design').hover(function() {
		$(this).find('#iselect_promo:hidden').fadeIn(500);
	}, function() {
		$(this).find('#iselect_promo:visible').fadeOut(500);
	});
	/*$('#top_link').localScroll({
   		target:'#container'
	});*/
	
	/*  fading background on over */
	$('#navlist li a')
		.css( {backgroundPosition: "0 -100px"} )
		.mouseover(function(){
			$(this).stop().animate(
				{backgroundPosition:"(0 0)"}, 
				{duration:150})
			})
		.mouseout(function(){
			$(this).stop().animate(
				{backgroundPosition:"(0 -100px)"}, 
				{duration:150})
	});
	// disabling the store links	
	/*$("a").each(function() {
		var href = $(this).attr("href");
		if (href == "/zencart") {
		$(this).click(function() {
		alert("Sorry! Our online store is currently under maintenance, please try again later.");
		return false;
		});
		}
		});*/
});			