$(document).ready(onGPSwitcherReady);
$(document).load(onReplaceGPSwitcher);
$(window).resize(onReplaceGPSwitcher);
$(window).scroll(onReplaceGPSwitcher);

function onGPSwitcherReady()
{
	createBoutiqueButton();
	
	onReplaceGPSwitcher();
	$(".GPSwitcher").fadeIn("slow");
	$(".LanguageList").fadeIn("slow");
	$(".StoreButton").fadeIn("slow");
}

function onReplaceGPSwitcher()
{
	$(".GPSwitcher").css("left" , (document.body.clientWidth+960)/2 + 20);
	$(".LanguageList").css("left" , (document.body.clientWidth+960)/2 + 170);
	$(".StoreButton").css("left" , (document.body.clientWidth+960)/2 + 20);
}

function createBoutiqueButton()
{
	//alert("001-B12");
	var boutique = $("<div/>");
	boutique.addClass("Button StoreButton");
	boutique.append("<a href='?p=97'><img src='./doc/images/boutique.png'/></a>");
	boutique.css("display" , "none");
	$("body").append(boutique);
}
