pic1= new Image(110,22); 
pic1.src="/material/zeleni-izziv/zeleni-izziv-rdeca.png"; 
$(document).ready(function(){
    
    $(function() {
        $("#menu-container").lavaLamp({
            speed: 140,
            selected: hnSelected
        });
    });   
    
    selectedTab = 'vrt';
    $("#mcr-top-vrt img").attr('src','/material/A_foto.png');
    $("#mcr-top-vrt").css('background-image','url(/material/tab_ozadje.png)');
    $("#mcr-forum").hide();
    $("#mcr-rdan").hide();
    
    $("#mcr-top div").click(function(){
        $("#mcr-top-"+selectedTab+" img").attr('src','/material/A_'+selectedTab+'_0.png');
        $("#mcr-top-"+selectedTab).css('background-image','url(/material/tab_ozadje_0.png)');
        $("#mcr-"+selectedTab).hide();                  
        selectedTab = $(this).attr('id').substring(8);
        $("#mcr-top-"+selectedTab+" img").attr('src','/material/A_'+selectedTab+'.png');
        $("#mcr-top-"+selectedTab).css('background-image','url(/material/tab_ozadje.png)');
        $("#mcr-"+selectedTab).show();             
    });
    
    $("#e-novice-form").submit(function(){
        var email = $("#e-novice-mail").val();
        $(".mcrn-bottom").html('<div align="center"><img src="/material/ajax-loader-2.gif" border="0" width="35" height="35"></div>');
        $.post("/controller/ajax/Narocilo-na-novice.php",{email: email},function(data){
            $(".mcrn-bottom").html(data);
        });
        return false;
    });
    
    $(".natisni-link").click(function(){
        
        window.open($(this).attr('href'),'Natisni','width=660,height=700,resizable=no,location=no,directories=no,status=no,scrollbars=yes');
         
        return false;
    });
});

