/*
	EPIONE BEVERLY HILLS
*/

var COOKIE_NAME = 'epioneChatBox';
var ADDITIONAL_COOKIE_NAME = 'additional';
var pathname = window.location.pathname;
var options = { path: '/', expires: 1 };
$(document).ready(function($){
	if($.cookie(COOKIE_NAME) == null || $.cookie(COOKIE_NAME) == 'chatBoxDefault'){
		$('#welcomeMessage').hide();
		$.cookie(COOKIE_NAME, 'chatBoxDefault', options);
		setTimeout(function(){ 
			$('#welcomeMessage').fadeIn()
		},4000);
	}		
	if($.cookie(COOKIE_NAME) == 'chatBox'){
		$('#welcomeMessage').css('display','none');
	}
	$('a#closeChatBox').click(function() {							   
		$.cookie(COOKIE_NAME, 'chatBox', options);
		$('#welcomeMessage').fadeOut(1000);
		return false;	
	});		
	$(".confirmit").click(function(){
		if(confirm('You are about to leave epione site.')){
			return true;
		} else {
			return false;
		}
	});
});