$(document).ready(function(){

	// in Frans menu USA SHOP verder naar rechts plaatsen:
	if ( $('#siteNav ul li:contains("A PROPOS")').get().length > 0 )
	{
	    $('#siteNav ul li:contains("A PROPOS")').next().css('margin-left', '80px');
	}
		
	// =========================================================================
		
	// toon en verberg countrySelector
		
	$('#countryList').css({opacity:0});
	$('#coverframe').css({opacity:0});
	
	$('#countrySelector').click(function(){
		$('#coverframe').animate({top:-370, height:331}, 600);
		$('#countryList').animate({top:-370, height:331, opacity:1}, 600, null, function(){$(this).find('ul').fadeIn()});
	});
	
	$('#countryList > a.closeX').click(function(){
		$('#coverframe').animate({top:20, height:0, opacity:0}, 600);
		$('#countryList>ul').fadeOut().parents('#countryList').animate({top:20, opacity:0, height:0}, 600);
	});
	$('#countryList > ul > li > a').click(function(){
		$('#coverframe').animate({top:20, height:0, opacity:0}, 600);
		$('#countryList>ul').fadeOut().parents('#countryList').animate({top:20, opacity:0, height:0}, 600);
	});
	
	// =========================================================================
		
	// toon en verberg overlay
	
	$('a#openmailform').click(function(){
		$('div#mailfriendform').show();
		$('#yourname').focus();
	});
	$('a#reopenmailform').click(function(){
		$('div#mailfriendform').show();
		$('div#mailfriendsent').hide();
		$('#yourname').focus();
	});											 
		
	$('div.overlay a.closeX').click(function(){
		$(this).parents('div.overlay').hide();
	});
	
});

