// code for navigation

$(document).ready(function() {
	$("#nav").ready(function() { // scan the page for any navigations
		$(".sub").hide(); // hide the sub menus
		
		$('.sub').parent().hover(				
				function() {
					$(this).children(".sub").show(); // show the sub menu
					if( $(this).hasClass( 'last' ) ){
						$(this).children(".sub").css({ 'left': '-75px' });
					}
				},
				function() {
					$(this).children(".sub").hide(); // hide the sub menu
				}
		);
		/*$(".sub").parent().mouseover(function(){
			$(this).children(".sub").show(); // show the sub menu
			if( $(this).hasClass( 'last' ) ){
				$(this).children(".sub").css({ 'left': '-75px' });
			}
		});
		
		$(".sub").parent().mouseout(function(){
			$(this).children(".sub").hide(); // hide the sub menu
		});*/
	});
});
