jQuery(document).ready(function() {
	//Frontpage
	 jQuery('div#main_sections div:first-child').addClass("alpha");
	 jQuery('div#main_sections div:nth-child(3n)').addClass("omega");
	 jQuery('div#News li:first-child').addClass("alpha");
	 jQuery('div#News li:nth-child(4n)').addClass("omega");
	//Subcategories listing
	 jQuery('ul.products-grid li:first-child').addClass("alpha");
	 jQuery('ul.products-grid li:nth-child(3n)').addClass("omega");
	 jQuery('ul.products-grid li:nth-child(4n)').addClass("alpha");	 
});

