function initialize() {
    var latlng = new google.maps.LatLng(50.07145,19.981534);
    var myOptions = {
        zoom: 15,
        center: latlng,
        mapTypeId: google.maps.MapTypeId.ROADMAP
    }
    var map = new google.maps.Map(document.getElementById("map"), myOptions);

    var myMarker = new google.maps.Marker({
        position: latlng,
        map: map
    });
}

$(function() {
    $(".fancy").fancybox();
    
    $("#left_menu a").mouseenter(function(){
        var a = $(this).children(':eq(0)').children(':eq(0)').attr('src');
        var b = $(this).attr('rel');
        $(this).children(':eq(0)').children(':eq(0)').attr('src', b);
        $(this).attr('rel', a);
    });
    $("#left_menu a").mouseleave(function(){
        var a = $(this).children(':eq(0)').children(':eq(0)').attr('src');
        var b = $(this).attr('rel');
        $(this).children(':eq(0)').children(':eq(0)').attr('src', b);
        $(this).attr('rel', a);
    });
    
    if(window.google !== undefined && google.maps !== undefined){
        initialize();
    }
    
    /*$('#kuchnie-box a').click(function(){
        var id = $(this).attr('id').replace('kategoria-', '');
        $(this).addClass('current').siblings().removeClass('current');
        $('#left_menu>a').each(function(){
            if($(this).attr('category') == id){
                $(this).show();
            } else {
                $(this).hide();
            }
        });
        return false;
    });*/
    
    //$('#kategoria-' + $('#big-img').attr('category')).click();    
    
})
