jQuery(document).ready(function($) {
	
	// remove items from layout // unused and undesired divs and panels in current theme
		$('#Insert-what-you-want-removed-here-and-separate-by-commas').remove();
	// 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
	
		$('.Poster').cycle({
			timeout:6000,
			fx:'fade' 
		});

	// 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
	
	<!-- WP Embedder -->
$.getJSON("http://www.wordpressfeeder.com/feed.php?feed=http://blog.vashdesigns.com/feed/&content_char_limit=300&max_posts=1&thumbnail=no&read_more=1&callback=?", function(data) {
	for (i = 0; i < data.length; i++)
	{
	   $(".wordpress-feeder").append(
	   "<li><h2><a href='" + data[i].rssItem.link + "'>" + data[i].rssItem.title + "</a></h2><div class='pubdate'>" + data[i].rssItem.pubdate + "</div><div class='image'><img src='" + data[i].rssItem.postThumbnail + "'></div><div class='content'>" + data[i].rssItem.content + "</div><div class='read-more'><a href='" + data[i].rssItem.link + "'>" + data[i].rssItem.readMore + "</a></div></li>"   	
	   ); 		
	}		
}); 
	
});

