// JavaScript Document

jQuery(function($){ // on page ready

$.get(
    "diavetites.php", 
    { "p": "nyitolap" },
    function(data){
        var obj = jQuery.parseJSON(data);
        if (obj.length > 0)
        {          
            $('#content-img-right').crossSlide({
                sleep: 5,
                fade: 1
                }, 
                obj 
            ).fadeIn(1000);
        }

    }),
    "json" 
   
   $(".flags-div > a").each(function(){
        $(this).click(function(){
             window.location.href = 'index.php?l=' + $(this).attr("id");  
             return false;  
        });
    });
           
});

