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'});
