jQuery(document).ready(function($) {
	
	$('.SubCategoryListGrid li:last-child').css('display','none');
	
	var ProductThumbs = $('.ProductTinyImageList ul li').size();
		if (ProductThumbs <= 1) {
			$('.ProductTinyImageList').hide();
			$('.ProductMain').css('margin-left','125px');
		}
	
	// remove items from layout // unused and undesired divs and panels in current theme
	// end
	
	// remove last list item to change a 5 product list to 4
	/*
		$('#INSERTPANELHERE .ProductList li:nth-child(5)').hide('');
	*/
	// end
	
// CUSTOM AND OPTIONAL SCRIPTS // Enable only if needed
	
	// homepage slideshow // image/content cycler
		/*$('#HomeSlideshow .slideshow').cycle({
			timeout:9000,
			fx:'fade', 
		// pager for slideshow navigation // Remove if not needed 
    		pager:  '#HomeSlideshow .pager',
   			next:   '#HomeSlideshow .next', 
    		prev:   '#HomeSlideshow .prev'
		});*/
	// end
	
	// Add Cladd to Each Menu Item for Individual Styling // image/content cycler
	/*
	$(document).ready(function () {
    $('#Menu > ul > li').each(function() {
        $(this).addClass(function() {
          return "nav-" + $(this).index();
        });
    });
	});
	*/
	// end
	
	// Hide first and last element in Product Breadcrumb //
	/*
	$(document).ready(function () {
		$('#ProductBreadcrumb ul li:first-child').hide();
    	$('#ProductBreadcrumb ul li:last-child').hide();
	});
	*/
	// end
	
	// BX slider // product slider
	/*	
		$('#HomeFeaturedSlider').bxSlider({
		displaySlideQty: 4,
		moveSlideQty: 4             
        });
	*/
		
	/*	$('#HomeNewSlider').bxSlider({
		displaySlideQty: 4,
		moveSlideQty: 4             
        });
	*/
	// end
	
	// paRSS plugin
	/*	$("#rss").PaRSS(
		"feed url",	// rss feed url (required)
		2,		// number of items (optional)
		"M jS g:i a",	// date format (optional)
		"image"         // display format (optional)
	);*/
	// end
	
});

