$(document).ready(function(){

$('#menu-container ul li a img[id^="m"]').mouseover(function(){
	  $("#"+$(this).attr("id")).attr('src','/images/'+$(this).attr("id")+'_1.png');
    }).mouseout(function(){
      $("#"+$(this).attr("id")).attr('src','/images/'+$(this).attr("id")+'_0.png');
    });
	
$("#slideshow").showcase({
	css: { width: "447px", height: "264px" },
    animation: { type: "fade", interval: 8000, stopOnHover: false, easefunction: "swing", speed: 1800 },
    images: [    
    { url:"/images/oferta-slide/slide2.jpg",
      description: "",
      link:"/trekkingi/trekking-wokol-mont-blanc,1.html", target: "_blank" },
	  { url:"/images/oferta-slide/slide3.jpg",
      description: "",
      link:"/trekkingi/trekking-wokol-matterhorn,4.html", target: "_blank" },
	  	   { url:"/images/oferta-slide/slide6.jpg",
      description: "",
      link:"/trekkingi/trekking-wokol-zugspitze,19.html", target: "_blank" }, 	  
	  
	  { url:"/images/oferta-slide/slide1.jpg",
      description: "",
      link:"/trekkingi/trekking-wokol-grossglocknera,18.html", target: "_blank" }, 
	  

	  { url:"/images/oferta-slide/slide5.jpg",
      description: "",
      link:"/trekkingi/trekking-wokol-triglava,17.html", target: "_blank" },
	 
	  { url:"/images/oferta-slide/slide7.jpg",
      description: "",
      link:"/wyprawy/trekking-na-alpejskich-szczytach,12.html", target: "_blank" },
	  { url:"/images/oferta-slide/slide4.jpg",
      description: "",
      link:"/trekkingi/trekking-grand-tour,16.html", target: "_blank" }],
    navigator: { position: "top-right", orientation: "vertical", autoHide: true,
                 css: { padding:"6px", margin: "4px 0px 0px 0px" },
                 item: {
                     css: { height:"8px", width:"8px", "-moz-border-radius": "8px", "-webkit-border-radius": "8px",
                            backgroundColor: "Transparent", borderColor:"#878787" },
                     cssHover: { backgroundColor: "#ababab" },
                     cssSelected: { backgroundColor: "#dadada", borderColor: "#dadada" }
                 }
    },
    titleBar: { enabled: false }

});
	
});

Shadowbox.loadSkin('classic', '/scripts/shadowboxskin');
window.onload = Shadowbox.init;

//<![CDATA[

function Map(){

    Shadowbox.open({
        player:     'html',
        content:    '',
        height:     550,
        width:      720,
        options:    {
            onFinish: function(item){
                if(GBrowserIsCompatible()){
                    var map = new GMap2(document.getElementById('shadowbox_content'));
					var geocoder = new GClientGeocoder();
					var address = "Rynek 16, Zywiec, PL";
					geocoder.getLatLng(address,function(point) {
					if (!point) {
						alert(address + " nie zostal odnaleziony");
					} else {
						map.setCenter(point, 15);
						var marker = new GMarker(point);
						map.addOverlay(marker);
						marker.openInfoWindowHtml('<img src="/images/se_logo_gm.gif" alt="SportEvents Biuro Turystyki i Sportu" /><div style="font-size: 11px;margin-left:10px;height:100px">ul. Rynek 16<br/>34-300 Zywiec<br/>Tel. (+48) 33 475 65 60, (+48) 33 475 65 61<br/>Tel/Fax: (+48) 33 475 65 63<br/>kom. (+48) 691 95 44 67</div>');
						map.addControl(new GLargeMapControl());
					}
					}
					);               

                
                }
            }
        }
    });

};

//]]>