var site = {

	start: function(){ },
	
	move: function(c, p){
		ca = $('c'+c);
		cb = $$('#c'+c+' .cb')[0];

		wi = cb.getStyle('width').toInt();
		ml = cb.getStyle('margin-left').toInt();
		dt = 230;
		
		to = ml + (p * dt);
		if(to > 0) to = 0;
		if(Math.abs(to) >= wi) to = ml;

		new Fx.Morph(cb, {
			duration: 300,
			transition: Fx.Transitions.Expo.easeIn
		}).start({'margin-left' : to});
	},

//	*********************************************************************************************

	jumpMenu: function(targ,selObj,restore){
		eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
		if (restore) selObj.selectedIndex=0;
	},
	goToURL: function(target, url){ 
		eval(target + ".location='" + url + "'");
	},
	openBrWindow: function(theURL,winName,features){
		window.open(theURL,winName,features);
	}
};

//window.addEvent('domready', site.start);