$(document).ready(function() {
	$("li#products, li#breo, li#customer-services").mouseover(function() {
		$(this).addClass("show");
	});

	$("li#products, li#breo, li#customer-services").mouseout(function() {
		$(this).removeClass("show");
	});
});

function setCookie(strCookie, strValue, intExpireDays) {
	var objDate = new Date();
	objDate.setDate(objDate.getDate() + intExpireDays);
	document.cookie = strCookie + "=" + escape(strValue) + ((intExpireDays == null) ? "" : ";expires=" + objDate.toGMTString()) + ";path=/";
}

function getCookie(strCookie) {
	if (document.cookie.length > 0) {
		intStart = document.cookie.indexOf(strCookie + "=");
		if (intStart != -1) {
			intStart = intStart + strCookie.length + 1;
			intEnd = document.cookie.indexOf(";", intStart);
			if (intEnd == -1) intEnd = document.cookie.length;
			return unescape(document.cookie.substring(intStart, intEnd));
		}
	}
	return "";
}
