// JavaScript Document

jQuery(document).ready(function(){
		jQuery(".top-menu li:last").addClass("last-menu");
	});
jQuery(document).ready(function(){
		jQuery(".select-butt a").click(function(){
			jQuery(this).parent().parent().parent().find(".select-podmenu").slideToggle("fast");									
		});
	});
jQuery(document).ready(function(){
		jQuery(".select-fon .hidden p").click(function(){
			jQuery(this).parent().parent().find(".select-podmenu").slideToggle("fast");									
		});
	});
jQuery(document).ready(function(){
		jQuery("body").click(function(){
			jQuery(".select-podmenu:visible:not(:animated)").slideUp("fast");
		});
	});
jQuery(document).ready(function(){
	    jQuery("._blank a").click(function(){
	        window.open(this.href);
	        return false;
	    });
	});	
	
function onlineClient() {
	$('#oc').toggle('fast');
}

function sendRequest() {
	$.post('_a_post.php', $('#request').serialize(), function() {
		onlineClient();
	})
}
