$(document).ready(
 function(){ 
 $('#featured').innerfade({ 
	speed: 1500, 
	timeout: 5000, 
	type: 'sequence', 
	containerheight: '250px' 
 }); 
 
 $('#showroom').innerfade({ 
	 speed: 3000, 
	 timeout: 5000, 
	 type: 'sequence', 
	 containerheight: '250px' 
 }); 
 
 $('.slide').kwicks({
	max : 387,
	spacing : 3
 });

$(function () {
  var img = new Image();
  
  $(img)
    .load(function () { 
      $(this).hide();
    
      $('#loader')
        .removeClass('loading')
        .append(this);
    
      $(this).fadeIn();
    })

    .error(function () {
    })
    
    .attr('src', 'http://www.realoakfloors.co.uk/images/featured/oakflooring-featured.jpg');
});

});
