/*  #####################################################
**  Domain:    www.inn-salzach.com
**  Datei:     content.js
**  Funktion:  JavaScript Code exklusiv für Folgeseiten

**  Erstellt:  19.05.2009

**  Autor:     Axel Güldner/Michael Degener
**  copyright: infomax websolutions GmbH
##################################################### */


$(document).ready(function(){

	//Pfeile Seitennavigation
	$("#secnavi a.active").append("<span>&gt;&gt;</span>");
	
	
	
	//ColorBox: Bildergalerie
	$("a[rel='gallery']").colorbox({
			transition:"elastic", 
			opacity:0.8, 
			current : "Bild {current} von {total}",
			previous : "zur&uuml;ck",
			next : "weiter",
			close : "schlie&szlig;en"
	});
	
	//ColorBox: Webcams
	$("a[rel='cam'], a[rel='webcam'], a[rel='camHelper']").colorbox({
			transition:"elastic", 
			opacity:0.8, 
			current : "{current} von {total}",
			previous : "zur&uuml;ck",
			next : "weiter",
			close : "schlie&szlig;en"
	});
	
	//ColorBox: Reiseplaner
	$("a[rel=notepadOpener]").colorbox({
			width:"520px", 
			height:"55%", 
			inline:true,
			href:"#merkliste"
	});
	$("a[rel=notepadOpener]").click(function() {UpdateNotepad();});
	
	//ColorBox: Buchungsanfrage
	$("a[rel=bookingformOpener]").colorbox({
			width:"520px", 
			height:"90%", 
			iframe:true
	});
	
	$("a.help").click(function () {
		$("div.info").slideToggle("normal");
	});




});



$(window).load(function(){

});

