$(document).ready(function(){ 
   
    $('.left_banners a:first').append('<div class="projekty_progress"></div>');
    $('.left_banners a:last').append('<div class="projekty_executed"></div>');

    //Default Action
    $(".tab_content").hide(); //Hide all content
    $("ol.tabs li:first").addClass("active").show(); //Activate first tab
    $(".tab_content:first").show(); //Show first tab content
 
    $('a.gal_i').fancybox({ 'hideOnContentClick': true }); 
    $('a.f_img').fancybox({ 'hideOnContentClick': true }); 
    
    //On Click Event
    $("ol.tabs li").click(function() {
        $("ol.tabs li").removeClass("active"); //Remove any "active" class
        $(this).addClass("active"); //Add "active" class to selected tab
        $(".tab_content").hide(); //Hide all tab content
        var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
        $(activeTab).fadeIn(); //Fade in the active content
        return false;
    });         
}); 

function add_to_favorite() {
    var BookmarkURL="http://www.prk7nieruchomosci.com.pl"
    var BookmarkTitle="PRK 7 Nieruchomości"

    if (document.all) // IE 
    {        
        window.external.AddFavorite(BookmarkURL,BookmarkTitle)
    }
    else if(window.sidebar) // FF
    {
        window.sidebar.addPanel(BookmarkTitle, BookmarkURL, '');
    }
    else    
    {
        alert("Użyj skrótu Ctrl+D, aby dodać stronę do zakładek.");
    }

}
