﻿$(document).ready(function() {
	$('.nav').superfish({
		delay:400
	}); //end superfish
	$('.enav').superfish({
	delay:400
	}); //end employee superfish
	jQuery('#mycarousel').jcarousel({
        vertical: true,
        scroll: 3,
        visible: 4,
        animation: 700
    }); //end jcarousel
    $('.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');
	}
	$('#epr').click(function() {
		$.cookie('epr', 'true');
	});
}); //end ready


