/***********************************************************
Scriptname: 	init.js
Dependencies: 	*
Version: 		n/a
Description:	Instantiating the application

Copyright: 		Webavance B.V. 2011
Legal: 			Any use of this script without Webavance B.V.
				express written consent is prohibited
************************************************************/

$(document).ready( function(){
	
	$(".tab_day").click(
			function(e) {
				$id = $(this).attr("rel");
				window.location.href="?pdate="+$id;
			}
	);	

	
	// FONT REPLACEMENT
	Cufon('h1, h2, h3, h4');
	Cufon('menu > li > a', {hover:true});
	Cufon('.toplinks_inner > a', {hover:true});
	
	$('menu').ddmenu({});
	
	
	if ($('#banner_fade').length>0) {
		$('#banner_fade').banner_fade({
			playtime: 8,
			activetime: 10,
			fade: 1000,
			btnwidth: 20,
			align: 'left'
		});
	}
	
	if($('#btn_enter').length>0){
		$("#btn_enter").mouseenter(function() {
			$(this).attr('src', '/images/ic_enter_over.png');	
		}).mouseleave(function() {
			$(this).attr('src', '/images/ic_enter.png');	
		});
	}
	
	if($('#btn_leave').length>0){
		$("#btn_leave").mouseenter(function() {
			$(this).attr('src', '/images/ic_leave_over.png');	
		}).mouseleave(function() {
			$(this).attr('src', '/images/ic_leave.png');	
		});
	}	
	
});
