$(document).ready(function(){
	$(".wnmap").colorbox({opacity:0.1, width:750, height:400, iframe:true});
	$(".wnroom").colorbox({opacity:0.1, width:750, height:400, iframe:true});
	
  /* div, span*/
  $(".wnphotos").colorbox({opacity:0.1, width:750, height:400, iframe:true, href: function(){
    var vUrl=new Array();
    vUrl[1]="/prague/wn/photos.php";
    vUrl[2]="/de/prag/wn/photos.php";
    vUrl[3]="/cz/praha/wn/photos.php";
    //vUrl[0]="/prague_hotels.php";
    //vUrl[1]="/de/prag_hotels.php";
    //vUrl[2]="/cz/praha_hotely.php";
    
    var id = this.id;
    var vPart = id.split('_');
    var vHotel = vPart[0].substring(1);
    var vLang = vPart[1];
    
    var Url = vUrl[vLang] + '?h=' + vHotel;    
    return Url;
  }});	
});
; 

