﻿
$(function()
{
	var menu = 
	{
		init: function()
		{
			$( '#menu .menu-link' ).hoverIntent(
			{
				interval: 30,
				sensitivity: 4,
				over: this.showMenuSection,
				timeout: 100,
				out: this.hideMenuSection
			});
		},
		
		showMenuSection: function()
		{
			var id = $( this ).attr( 'rel' );
			var el = $( String.format( '#menu-content-{0}', id ) );
			el.parent().addClass( 'hover' );
			el.addClass( 'menu-content-hover' );
		},
		
		hideMenuSection: function()
		{
			var id = $( this ).attr( 'rel' );
			var el = $( String.format( '#menu-content-{0}', id ) );
			el.parent().removeClass( 'hover' );
			el.removeClass( 'menu-content-hover' );
		} 
	};
	
	menu.init();
	
});


