/*
 * JQuery for lightbox gallery, slideshow and demon logo in footer.
 * Written for Springfield Hotel by Clearweb
 */

$(document).ready(function()
{
	//Toggle the demon logo on hover
	$('#demon > a > img').hover(function()
	{	
		$(this).attr("src", "http://www.springfieldhotel.ie/demonfoot2.png");	
	},
	function()
	{
		$(this).attr("src", "http://www.springfieldhotel.ie/demonfoot.png");
	});
	
	//Attach lightbox behaviour to all thumbnail images with rel="lightbox"
	$("a[rel*='lightbox']").lightBox();
	
	//Add target _blank to all external pointing links
	$("a[rel*='external']").attr('target','_blank');
	
	//Start the slideshow
	$(function()
	{
		setInterval("initSlideShow()", 3000);
	});
	
	//Load Google maps
	initialize();
});

$(window).unload(function()
{
	GUnload();
});


