$(function()
{
	$("#logo_hd img").mouseover(function(){
		$(this).attr("src", "img/logo_hotel_direct_over.gif");
	}).mouseout(function(){
		$(this).attr("src", "img/logo_hotel_direct.gif");
	});
	
	$("#image_container").show().cycle({
		timeout: 0,
		random: 1
	});
	
	startSlideshow("cards1");
	setTimeout('startSlideshow("cards2")', 2000);
	setTimeout('startSlideshow("cards3")', 4000);
	setTimeout('startSlideshow("cards4")', 6000);
});

function startSlideshow(sshow)
{
	$("#" + sshow).show().cycle({
		fx:     'fade', 
		speed:  1000, 
		timeout: 8000,
		pause: 1
	});
}