$(document).ready(function() {

	/* Applications Drop Down Menu */
	
	/* Back to suckerfish 
	$("#nav-apps").hide();

	$("#nav-trigger-apps").mouseover(function() {
		$("#nav-apps").show();
	});
	
	$("#nav-trigger-apps").mouseout(function() {
		$("#nav-apps").hide();
	});
	
	$("#nav-apps").mouseover(function() {
		$(this).show();
	});

	$("#nav-apps").mouseout(function() {
		$(this).hide();
	});				
	
	*/
	
	/* Use for mobile devices */
	$("#nav-trigger-apps").click(function() {
		$("#nav-apps").toggle();
		
	});
	
	/* Contact Us Drop Down Menu */
	
	
	/* Back to suckerfish 
	$("#nav-contact").hide();
	
	
	$("#nav-trigger-contact").mouseover(function() {
		$("#nav-contact").show();
	});
	
	$("#nav-trigger-contact").mouseout(function() {
		$("#nav-contact").hide();
	});
	
	$("#nav-contact").mouseover(function() {
		$(this).show();
	});

	$("#nav-contact").mouseout(function() {
		$(this).hide();
	});				
	*/
	
	$("#nav-trigger-contact").click(function() {
		$("#nav-contact").toggle();
		
	});

});

