/*
 * Global Functions
 * By Layered Pixels
 * Created Date: August 2, 2010
 * Version: 1.0
 */

var j = jQuery.noConflict();

// Drop-down navigation function
function initNav() {
	j('ul.nav ul.children').hide();
	j('ul.nav li').hoverIntent(
		function() {
			j(this).find('ul.children').show();
		},
		function() {
			j(this).find('ul.children').hide();
	})
}

j(document).ready(function() {
	
	// Initiation of the initNav function
	initNav();

})
 
