var localHost = 'http://localhost:8080';
var remoteHost = 'http://scandiclive.com';
var remoteHostWWW = 'http://www.scandiclive.com';

function onBestilButtonOff(me){
	document.getElementById(me.id.toString()).style.backgroundColor = "#53636a";
}

function onBestilButtonOn(me){
	document.getElementById(me.id.toString()).style.backgroundColor = "#425157";
}

function  getFriendsNames(){
	var numberOfTickets = document.getElementById('inputForm:numberOfTickets').value;
	if(numberOfTickets > 1){
		var i=2;
		var friendsNames = '';
		numberOfTickets++;
		for(i=2;i<numberOfTickets;i++){ 
			if(friendsNames == '')
				friendsNames = friendsNames + document.getElementById('inputForm:input'+i.toString()).value;
			else
				friendsNames = friendsNames + ',' + document.getElementById('inputForm:input'+i.toString()).value;
		}
		
		document.getElementById('inputForm:friends').value = friendsNames;
	}
}

function onBestilRejseButtonOver(me){
	if(document.getElementById(me.id.toString()).style.backgroundImage !=
	       'url("/ScandicLive/img/sportTravel/left_menu_on.gif")' &&
	   document.getElementById(me.id.toString()).style.backgroundImage !=
		    'url(/ScandicLive/img/sportTravel/left_menu_on.gif)'   &&
	   document.getElementById(me.id.toString()).style.backgroundImage !=
		    'url('+ remoteHost +'/ScandicLive/img/sportTravel/left_menu_on.gif)' &&
	   document.getElementById(me.id.toString()).style.backgroundImage !=
		    'url('+ remoteHostWWW +'/ScandicLive/img/sportTravel/left_menu_on.gif)')
		   document.getElementById(me.id.toString()).style.backgroundImage = 
			 'url("/ScandicLive/img/sportTravel/bestil_rejse_on.gif")';
}

function onBestilRejseButtonOff(me){
	if(document.getElementById(me.id.toString()).style.backgroundImage !=
		    'url("/ScandicLive/img/sportTravel/left_menu_on.gif")' &&
	   document.getElementById(me.id.toString()).style.backgroundImage !=
		    'url(/ScandicLive/img/sportTravel/left_menu_on.gif)'   &&
	   document.getElementById(me.id.toString()).style.backgroundImage !=
		    'url('+ remoteHost +'/ScandicLive/img/sportTravel/left_menu_on.gif)' &&
	   document.getElementById(me.id.toString()).style.backgroundImage !=
		    'url('+ remoteHostWWW +'/ScandicLive/img/sportTravel/left_menu_on.gif)')
		   document.getElementById(me.id.toString()).style.backgroundImage = 
			'url("/ScandicLive/img/sportTravel/bestil_rejse_off.gif")';
}

function onButtonOver(me){
	if(document.getElementById(me.id.toString()).style.backgroundImage !=
			'url("/ScandicLive/img/sportTravel/left_menu_on.gif")' &&
	   document.getElementById(me.id.toString()).style.backgroundImage !=
		    'url(/ScandicLive/img/sportTravel/left_menu_on.gif)'   &&
	   document.getElementById(me.id.toString()).style.backgroundImage !=
		    'url('+ remoteHost +'/ScandicLive/img/sportTravel/left_menu_on.gif)' &&
	   document.getElementById(me.id.toString()).style.backgroundImage !=
		    'url('+ remoteHostWWW +'/ScandicLive/img/sportTravel/left_menu_on.gif)')
		   document.getElementById(me.id.toString()).style.backgroundImage = 
			    'url("/ScandicLive/img/sportTravel/left_menu_over.gif")';
}

function onButtonOut(me){
	if(document.getElementById(me.id.toString()).style.backgroundImage !=
			'url("/ScandicLive/img/sportTravel/left_menu_on.gif")' &&
	   document.getElementById(me.id.toString()).style.backgroundImage !=
			'url(/ScandicLive/img/sportTravel/left_menu_on.gif)' &&
	   document.getElementById(me.id.toString()).style.backgroundImage !=
    		'url('+ remoteHost +'/ScandicLive/img/sportTravel/left_menu_on.gif)' &&
       document.getElementById(me.id.toString()).style.backgroundImage !=
    	    'url('+ remoteHostWWW +'/ScandicLive/img/sportTravel/left_menu_on.gif)')
	   document.getElementById(me.id.toString()).style.backgroundImage = 
		    'url("/ScandicLive/img/sportTravel/left_menu_off.gif")';
}

function thailandGallery() {
    document.getElementById('firstPageText').style.display = 'none';
    document.getElementById('galleryPage').style.display = 'block';
}
function closeGallery() {
    document.getElementById('firstPageText').style.display = 'block';
    document.getElementById('galleryPage').style.display = 'none';
}

function showPicture(id) {
    if(id == 1 || id == 2) {
        window.open(
            'http://scandiclive.com/ScandicLive/gallery/Gallery.html?'+id,
            '_blank',
            'width=551,height=816,resizeable=0,scrollbars=0,menubar=0,toolbar=0,location=0,status=0');
    } else {
        window.open(
            'http://scandiclive.com/ScandicLive/gallery/Gallery.html?'+id,
            '_blank',
            'width=816,height=551,resizeable=0,scrollbars=0,menubar=0,toolbar=0,location=0,status=0');
    }
}




