﻿WebLinc.prototype = $.extend(WebLinc.prototype,
{
	
});

$(document).ready(function() {
	/*======================================================================
		PRIMARY NAVIGATION
	----------------------------------------------------------------------*/
	$('#primary-nav > ul > li')
		.each(function() {
			$('> ul > li', this)
				.filter(':first')
					.addClass('first')
					.end()
				.filter(':last')
					.addClass('last');
		})
		.hoverIntent({
			sensitivity: 5,
			interval: 25,
			timeout: 100,
			over: function() {
				$(this)
					.find('a:first')
						.addClass('hover')
						.end()
					.find('ul:first').fadeIn('fast');
			},
			out: function() {
				$(this)
					.find('a:first')
						.removeClass('hover')
						.end()
					.find('ul:first').fadeOut('fast');
			}
		});
});
