/**
 * Scripts for Australian Laser Charge www.lasercharge.com.au
 * Author: Robert Tilt for Inferno Promotions
 */

/**
 * Script to handle the drobdown menus of the main nav
 */
$(document).ready(function(){

	//Script to handle the drobdown menus of the main nav
	//trigger when hover on menu items
	$("nav ul li a").hover(function() {
		//slidedown subnav
		$(this).parent().find("ul.subnav").slideDown('fast').show();

		//when cursor leaves subnav, slide up
		$(this).parent().hover(function() {
			}, function() {
				$(this).parent().find("ul.subnav").slideUp('slow');
			});
	});
	
});

























