// JavaScript Document
$( document ).ready(function()
{
	checkCookie();
});

function setCookie( locale )
{
	 $.cookie( 'locale_redirect', locale, { expires: 7, path: '/' } );
}

function checkCookie()
{
	var locale = $.cookie('locale_redirect');
	if( locale == '/en_ca/' || locale == '/fr_ca/' )
	{
		window.location.href = locale;
	}
	else
	{
		showLandingImages();
	}
}

function showLandingImages()
{
	$( '#english_landing_image' ).fadeIn( 1350 );
	$( '#french_landing_image' ).fadeIn( 1350 );
}