jQuery(document).ready(function($) {
	
	// remove items from layout // unused and undesired divs and panels in current theme
		$('.Right').remove();
	// end
	
		$('#SideProductRelated .ProductList li:nth-child(4)').css('margin','0');
		$('#SideTopSellers .ProductList li:nth-child(3)').css('margin','0');
		$('#CategoryContent .ProductList li:nth-child(4n)').css('margin','0');
		$('#BrandContent .ProductList li:nth-child(4n)').css('margin','0');
	
	// remove last list item to change a 5 product list to 4
		$('#SideProductRelated .ProductList li:nth-child(5)').hide();
		$('#SideTopSellers .ProductList li:nth-child(4)').hide('');
		$('#SideTopSellers .ProductList li:nth-child(5)').hide('');
	// end
	
// CUSTOM AND OPTIONAL SCRIPTS // Enable only if needed
	
	// homepage slideshow // image/content cycler
		var titles = ["Accessories", "Custom Engraving", "Collectors", "Walking Canes", "Exotic"];
		$('#HomeSlideshow .slideshow').cycle({
			timeout:6000,
			fx:'fade', 
		// pager for slideshow navigation // Remove if not needed 
    		pager: '#HomeSlideshowNav .pager',
			pagerAnchorBuilder: function(index) { 
        		return '<a href="#" class="' + titles[index] + '">' + titles[index] + '</a>'; 
    		}
		});
	// end
	
	// jCarousel slider // product slider
	/*
		$("#INSERTIDHERE .jCarouselContainer").jCarouselLite({
        	circular: true,
			speed: 800,
			visible: 4,
			scroll: 2,
			btnNext: ".sliderNext",
			btnPrev: ".sliderPrev"
    	});
	*/
	// end
	
	// paRSS plugin
	/*
		$("#BlogFeed").PaRSS(
		"http://INSERTSTOREDOMAIN.com/rss.php?action=newblogs&type=rss",	// rss feed url (required)
		10,					// number of items (optional)
		"M j, Y",			// date format (optional)
		"shortblogs"        // display format (optional)
		);
	*/
	// end
	
});

