// JavaScript Document for menu

var LAAL = {
	init : function() {
		var that = this;
		$('#MenuText ul li a').bind('mouseover', function() {
			var id = '#show_' + $(this).parents('li:first').attr('id').split('_')[1];
			var offset = $(this).parents('li:first').offset();
			$('.subMenu').hide();
			if (!$(this).parents('li:first').hasClass('noMenu')) {
				that.showMenu(id, offset);
			}
		});
		$('#MenuText ul li span').bind('click', function() {
			var id = '#show_' + $(this).parents('li:first').attr('id').split('_')[1];
			var offset = $(this).parents('li:first').offset();
			$('.subMenu').hide();
			if (!$(this).parents('li:first').hasClass('noMenu')) {
				that.showMenu(id, offset);
			}
		});
		$('.subMenu a').hover(function(){
			$(this).parents('.subMenu:first').css({
				backgroundColor: '#fff'
			});
		});
		$('#contentcon').bind('mouseover', function(){
			$('.subMenu').hide();
		});
		
		$('.subMenu').bind('click', function() {
			$(this).fadeOut();
		});
	},
	showMenu : function (id, offset) {
		$(id).css({ top: offset.top - 20,
			left: (offset.left + 146)
		}).fadeIn();
	}
};
jQuery(document).ready(function(){
	LAAL.init();
});
