function Dealerlocator(){
	
	this.container = document.getElementById('Dealerlocator');
	this.container.style.backgroundColor = "white";
	//Die Größenangaben werden nur vom IE7 und Opera beachtet, FF und Safari packen es so klein wie möglich. 
	this.container.style.height = 200;
	this.container.style.width = 350;
	this.container.style.border = "1px solid #000000";
	this.container.style.position = "absolute";
	this.container.style.top = "210px";
	this.container.style.left = "610px";
	this.container.padding = "10px";
	
	this.hidden = true;
	
	/* Methoden */
	this.show = show;
	this.hide = hide;
	this.showHide = showHide;
	
	function show(){
		Effect.Appear('Dealerlocator');
		this.hidden = false;
		new Draggable('Dealerlocator');
	}
	
	
	function hide(){
		Effect.DropOut('Dealerlocator');
		this.hidden = true;
	}
	
	
	function showHide(){
		if(this.hidden)
			this.show();
		else
			this.hide();
	}
	
}
