// JavaScript Document

    // linki z flasha
	function mapsColorBox(url){
        $.colorbox({href:url,width:"582", height:"481",iframe:true,scrolling:false});
    }
	function promoColorBox(url){
        $.colorbox({href:url,open:true});
    }
	
	// ladowanie flasha
	$(document).ready(
	    function() {
		    $('#contentsite').flash({
				swf:'bcs.swf',
				width:1014,
				height:690,
				wmode:'transparent',
				menu:'false',
				allowScriptAccess: 'always'
			});
	    }
	);
	
	//
	$(document).ready(function(){
		$("a[rel='dk']").colorbox();
		$("a[rel='foto']").colorbox();
		$("a[rel='promopromo']").colorbox();
	});
	/* autoshow promo
	$(document).ready(function() {  
        $.fn.colorbox({href:"promocja.html", open:true});  
    }); */
	
	$(function (){
        //slider widget
		$(".slider").hover(function(){
            $(".slider").stop(true, false).animate({right:"0"},"medium");
        },function(){
            $(".slider").stop(true, false).animate({right:"-205"},"medium");
        },500);
    });
	
		function HideContent(d) {
           if(d.length < 1) { return; }
           document.getElementById(d).style.display = "none";
		};
        function ShowContent(d) {
           if(d.length < 1) { return; }
           document.getElementById(d).style.display = "block";
        };
       function ReverseContentDisplay(d) {
       if(d.length < 1) { return; }
       if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
       else { document.getElementById(d).style.display = "none"; }
       };
