$(document).ready(function() {

	$('body.fireplaces #body-content #fireplace-images img:even, body.pimp-your-stove #body-content > ul > .row > li:even').addClass("odd");
	$('body.pimp-your-stove #body-content > ul > .row:first-child').addClass("first-child");
	$('ul#special-offers li ul:first').addClass("first");
	$('ul#special-offers > li:last-child').addClass("last-child");
	
	$(function() {
	    $('ul#home-images li:gt(0)').hide();
	    setInterval(function(){
	      $('ul#home-images li:first-child').fadeOut()
	         .next('li').fadeIn()
	         .end().appendTo('ul#home-images');}, 
	      3000);
	});
});

