$(function() {
	
	$("ul.menu > li").each(function() {
		
		$(this).hover(
			function() {
				var $top = $(this).offset().top + $(this).height();
				var $lft = $(this).offset().left - 1;
				$(this).children("ul").css({ "top": $top + "px", "left": $lft + "px" }).show();
			},
			function() {
				$(this).children("ul").hide();
			}
		);
		
	});
	
	if ($(".accordion-control").length > 0) $(".accordion-control").accordion({header: "h1"});
	
	if ($(".tabbox-control").length > 0) $(".tabbox-control").tabs();
	
});