﻿$(document).ready(function() {
	$('.nav').superfish({
	delay:400
	});
	if ($.cookie('intro_cookie') == 'viewed') {
		$('#intro h2').show();
		$('#intro h5').show();
	} else {
		$('#intro h2').hide();
		$('#intro h5').hide();
		$('#intro h2').fadeIn(3000, function(){
			$('#intro h5').fadeIn(3000);
		});
		$.cookie('intro_cookie', 'viewed'); //as of 06/08/09 cookies do not work in intro in Chrome or Safari
	}; //end intro cookie if
	$('.static').click(function(stat){
			stat.preventDefault();
	}); //end static function
	var url = location.hostname;
	if (url = 'localhost') {
		url = 'localhost/mysite';
	};
	if ($.cookie('login') == 'employee') {
		$('.li_link').removeClass('li_link').attr('href', 'http://www.aecci.com/employee/employee_home.php');
	}
}); //end ready

