var _MENU = {
	
	current: "",
	
	ini: function(page){
		if(page.indexOf('sl_')>-1){
			this.current = 'menu-top2';
		}else if(page.indexOf('mi_')>-1){
			this.current = 'menu-top1';
		}
		_MENU.select(this.current);
	},
	
	select: function(id){
		if(document.getElementById(id)){
			document.getElementById(id).className = id+"-over";
		}
	},
	
	deselect: function(id){
		if(document.getElementById(id) && this.current!=id){
			document.getElementById(id).className = id;
		}
	}
	
}

var _JS = {

	open: function(path){
		Shadowbox.open({
			content:    path,
			player:		'img',
			title:      "Marina Sabrevois"
		});
	}

}
