// JavaScript Document

$(".callback_submit").livequery('click',function(){send_mail();});
$(".sm_menu").livequery('mouseover',function(){$(this).find('.submenu').show();});
$(".sm_menu").livequery('mouseout',function(){$(this).find('.submenu').hide();});
$(".rub").livequery('click',function(e){
	var block = $(this).parent().find('.rubsubmenu');
	if(block.html() == null){location.href = $(this).attr("href");}
	block.toggle().css({
			left: e.pageX-5+'px',
			top:e.pageY-30+'px'});return false;
});
$(".rubsubmenu").livequery("mouseleave",function(){setTimeout(function(){$(".rubsubmenu").hide();},250);});
