function show_office(gpsx,gpsy) {
    location.href='#header';
    $("#terkepes_cont").trigger('click');
    //show(gps,1);
    setTimeout("top.frames[0].show_point("+gpsx+","+gpsy+",1);",2000);
    
}
function slideszint(num){
    if ($('#'+num).is(":hidden")) {		    
        $('#'+num).slideDown(500);		    		    
    } else {		   
       $('#'+num).slideUp(500);
        
    }
}
function szoveg_nagyitas (id,szam,hideid, showid){
    setFontSize(id,szam);
    hide_element(hideid);
    show_element(showid);
}
$(document).ready(function() {
    
    var t;
    var t_end;
    
    $('#zold_logo').mouseover(function(){
        clearTimeout(t_end);
        t = setTimeout("$('#green_office_bubble').fadeIn(250)",100); 
    });
    $('#zold_logo').mouseout(function(){
        clearTimeout(t);
        t_end = setTimeout("$('#green_office_bubble').fadeOut(250)",100);
    });
    $('#cat_logo').mouseover(function(){
        clearTimeout(t_end);
        t = setTimeout("$('#cat_office_bubble').fadeIn(250)",100); 
    });
    $('#cat_logo').mouseout(function(){
        clearTimeout(t);
        t_end = setTimeout("$('#cat_office_bubble').fadeOut(250)",100);
    });
});
