/**
 * @author michal
 */
$(document).ready(function(){
	//preLoadImages
	jQuery.preLoadImages('/images/2011/vlag_nl_active.png','/images/2011/vlag_uk_active.png','/images/2011/vlag_de_active.png','/images/2011/mainmenuliH_dark.png','/images/2011/submenuliH_dark.png');
	jQuery.preLoadImages('/images/2011/tab_darkgreenH.png','/images/2011/tab_greenH.png','/images/2011/mainmenuliH.png','/images/2011/submenuliH.png');
	//end preLoadImages
	
	//innerfade
	if ($('ul#fadingitems').find('li').length > 1) {
		$('ul#fadingitems').innerfade({
			speed: 2000,
			timeout: 7000,
			type: 'sequence',
			containerheight: '521px'
		});
	}
	//end innerfade		
	
	//header tabs
	$('#header_tabs a:nth-child(2n)').addClass('tab_dark');
	$('#header_tabs a').eq(0).attr('id','tab_home');
	$('#header_tabs a').eq(1).attr('id','tab_bungalows');
	$('#header_tabs a').eq(2).attr('id','tab_hotel');
	$('#header_tabs a').eq(5).attr('id','tab_langeraufenhalt');
	//header tabs
	
	//reserveren form
	$('.actionframe_radio').click(function(){
		var tid = $(this).attr('id');
		var nlink = '#';
		switch(tid){
			case 'radio_bungalow':nlink = 'http://www.bungalowpark-nijmegen.nl/nl/online-bungalow-reserveren.html'; break;
			case 'radio_hotel':nlink = 'http://www.hotel-nijmegen.nl/nl/online-hotel-appartement-reserveren.html'; break;
			case 'radio_home':nlink = 'http://www.bungalowpark-nijmegen.nl/nl/online-bungalow-reserveren.html'; break;
			case 'radio_debungalow':nlink = 'http://www.bungalowpark-nijmegen.nl/de/online-bungalow-buchen.html'; break;
			case 'radio_dehotel':nlink = 'http://www.hotel-nijmegen.nl/de/online-hotel-appartement-buchen.html'; break;
			case 'radio_dehome':nlink = 'http://www.bungalowpark-nijmegen.nl/de/online-bungalow-buchen.html'; break;
			case 'radio_enbungalow':nlink = 'http://www.bungalowpark-nijmegen.nl/en/online-bungalow-booking.html'; break;
			case 'radio_enhotel':nlink = 'http://www.hotel-nijmegen.nl/en/online-hotel-apartment-booking.html'; break;
			case 'radio_enhome':nlink = 'http://www.bungalowpark-nijmegen.nl/en/online-bungalow-booking.html'; break;
		}
		$('#reserveren_link').attr('href',nlink);
	});
	//end reserveren form
	
});//end document ready

$(window).load(function(){
	
	
	
});//end window load

//preload images
(function($){var cache=[];$.preLoadImages=function(){var args_len=arguments.length;for(var i=args_len;i--;){var cacheImage=document.createElement('img');cacheImage.src=arguments[i];cache.push(cacheImage);}}})(jQuery)
//end preload images

