$(document).ready(function(){
	$('a[rel*=facebox]').facebox();
	$( '#find' ).focus(function(){
		if( $(this).val() == 'Waar bent u naar op zoek?' || $(this).val() == 'Search' )
			$(this).val( '' );
	}).blur(function(){
		if( $(this).val() == '' ){
			var regexp = /\/([a-zA-Z]{2})\//;
			var url = document.location.href;
			var result = url.match( regexp );
			if( result[1] == 'nl' ){
				$(this).val( 'Waar bent u naar op zoek?' );
			}else if( result[1] == 'en' ){
				$(this).val( 'Search' );
			}
		}	
	});
	$( '.menu-card' ).click(function(){
		window.open( $(this).attr( 'href' ), 'menu', 'width=450,scrollbars=yes' );
		return false;
	});
	$( '.canal-route-link' ).click(function(){
		window.open( $(this).attr( 'href' ), 'route', 'width=840,height=720,scrollbars=yes' );
		return false;
	});
});