/* 
 *
 * QuickNav JS: Custom for Oakley, simple dropdown triggers, supported across the browser spectrum
 * Author: James Thomas
 * Version: 0.0.1
 * (c)2010 Oakley, Inc.
 * Do not use without permission.
 *
 */


// Enhance!!
$(document).ready(function()
{
	$( '#quicknav ul li.hassub' ).bind( "mouseover", function()
	{
		$( 'ul', this ).show();
	});

	$( '#quicknav ul li.hassub' ).bind( "mouseout", function()
	{
		$( 'ul', this ).hide();
	});
});
