$(document).ready(function(){
	// user lands on page; hide all but language options
	$('#photo_content_en').hide();
	$('#photo_content_fr').hide();
	$('#main_content_container').hide();
	$('#content_en').hide();
	$('#content_fr').hide();
	
	// user clicks on 'english' box; redirect to blacks.ca
	$('#box_english').click(function(){
		window.location = "http://www.blacks.ca/";
	})
	
	// user clicks on 'francais' box; show french content
	$('#box_french').click(function(){
		$('#photo_langselect').hide();
		$('#photo_content_fr').show();
		$('#main_content_container').show();
		$('#content_fr').show();
	})
})
