$(function(){
    var bzztimer = null;
    $(".main_logo").mouseover(function(){
        $(".main_logo2").show();
        timer = setInterval(function(){
            $(".main_logo2").css("top",Math.random()*3);
            $(".main_logo2").css("left",Math.random()*3);
        }, 5);
    });
    $(".main_logo").mouseout(function(){
        clearTimeout(bzztimer);
        $(".main_logo2").hide();
    });
    
});

function rate(id,rate)
{ 
	$.get("../../inc/rate.php?id="+id+"&do="+rate, { id: id, rate: rate },
	function(data)
	{
		document.getElementById("p"+id).innerHTML = data;
	});	
}

function sub(id)
{ 
	$.get("../../inc/sub.php?id="+id, { id: id },
	function(data)
	{
		document.getElementById("s"+id).innerHTML = data;
	});	
}

function collapsElement(id) {
    if ( document.getElementById(id).style.display != "none" ) {
        document.getElementById(id).style.display = 'none';
    }
    else {
        document.getElementById(id).style.display = '';
    }
}

function image_reload()
{
	document.images['captcha'].src='/captchas/w3captcha/captcha.php?rnd='+Math.round(Math.random(0)*1000);
}

//$('#menu1').rb_menu();
//$('#menu2').rb_menu({triggerEvent: 'click', hideOnLoad: true, loadHideDelay: 0, autoHide: false});
//$('#menu3').rb_menu({transition: 'swing'});
