var enterFunction = function() {
	this.start('width', '570px');
}

var leaveFunction = function() {
	this.start('width', '200px');
}

var morphSet = function(){
	//now we can set the style properties just like Fx.Tween
	//except now we can set multiple style properties
	this.set({
		'width': 100,
		'height': 100,
		'background-color': '#eeeeee'
	});
}

var morphStart = function(){
	//we can also start out morph like we would start a tween
	//except we can now input multiple style properties
	this.start({
		'width': 600,
		'height': 500,
		'background-color': '#d3715c'
	});
}


var morphReset = function(){
	//set the values back to start
	this.set({
		'width': 0,
		'height': 0,
		'background-color': '#ffffff'
	});
}

//dealers
function ref( id ) {
	var url = 'http://test09.selectwindows.nl/dealers/?id=' + id ;		
	document.location.href=url;
}

// Carteck configurator
	function start(Wert){
	  popup=window.open("http://www.garagentor-konfigurator.de/start/startconfig2.asp?UID=info@selectwindows.nl&LangID=NL&ProgramSClass=" + Wert, "Konfigurator", "width=732,height=482,scrollbars=yes,resizable=no");
	  popup.focus();
	}

