$(document).ready(function(){
	$.ifixpng('i/blank.gif');
	$('.iePNG').ifixpng();
	$("#voting").click(function(){
		$(".voting").each(function(){
			if($(this).is(":checked"))
			{
				$.get("poll/vote/"+$(this).val());
				$("#vote_block").text(lang.thanks_for_voting);
			}
		});
	});
	
	$("#doregister").click(function(){
		if($("input#acception").is(":checked"))
		{
			return true;
		}
		else
		{
			alert(lang.should_accept_agreement);
			return false;
		}

	});
});
$(document).ready(function() {
	$('#main_desk').toggle(function() {
		$('#main_desk_menu').show('fast');
	}, function() {
		$('#main_desk_menu').hide('fast');
	});

	$('.open_chat').click(function(){
		if (username)
		var url = 'http://chat.money4intellect.com/flashchat.php?username=' + username ;
		else
		var url = 'http://chat.money4intellect.com/flashchat.php' ;

		$(this).attr("href",url);
	});

});