$(document).ready(function() {
	var window_width  = $(window).width();
	var window_height = $(window).height();
	
	$('#logo').css({
		position: 'absolute',
		left: (window_width / 2) - 153, //140,
		top: (window_height / 2) - 59 //24
	});
	$('#slogan').css({
		position: 'absolute',
		left: (window_width / 2) - 96,
		top: (window_height / 2) + 55
	});
	$('#flags').css({
		position: 'absolute',
		left: (window_width / 2) - 251,//191, //257,
		top: (window_height / 2) + 100
	});
	
	//$('#flags #es').click(function(){ window.location = 'home'; });
	//$('#flags #en').click(function(){ window.location = 'www2.en.luxurydietrich.com'; });
	//$('#flags #fr').click(function(){ window.location = 'www2.fr.luxurydietrich.com'; });
	
	$('#flags div a').mousedown(function() { $(this).blur(); });	
	
	$('#flags div').mouseover(function(){
		$('#flags div').removeClass('over');
		$(this).addClass('over');
	});
	
	$('#flags div').mouseout(function(){
		$(this).removeClass('over');
	});
});
