;/**
  * Explore Holidays
  * 
  */
EH.HOME = 
{		
    init: function() {   
			
			$(document).ready(function(){
				EH.HOME.banners();
				/*
					Tidies up the the Our favourites section on the front page by truncating text
				*/												 
				EH.ourFavourites();
				
				/*
					Brochure Dock at bottom of home page, makes wonderful animation thingy
				*/
				$('#brochure-dock').jqDock({
					align: 'bottom',
					size: 94,
					labels: 'bc'
				});
				
			});			
    },		
		banners: function(){
			$('#home-feature-content').cycle({
				fx: 'fade',
			 	speed: 3000,
			 	timeout: 3000,
			 	pager: '#pager'
			}); 
		}
};

EH.HOME.init();

