var popStatus = 0;
function loadEvent(){
	if(popStatus == 0){
		$("#evePopup").fadeIn("slow");
		popStatus = 1;
	}
}
function centerPop(){
	//request data for centering
	var windowWidth = document.documentElement.clientWidth;
	var windowHeight = document.documentElement.clientHeight;
	var popupHeight = $("#evePopup").height();
	var popupWidth = $("#evePopup").width();
	//centering
	$("#evePopup").css({
		"position": "absolute",
		"top": windowHeight/2-popupHeight/2,
		"left": windowWidth/2-popupWidth/2
	});
}
function eveDisable(){
	//disables popup only if it is enabled
	if(popStatus==1){
		$("#evePopup").fadeOut("slow");
		popStatus = 0;
	}
}
$(document).ready(function(){
	$("#eveClose").click(function(){
		eveDisable();
	});
	//Press Escape event!
	$(document).keypress(function(e){
		if((e.keyCode==27 || e.which == 27) && popStatus==1){
			eveDisable();
		}
	});
});
function occasion(eve,ocas){
	wedStr = "<p>Weddings are the most important day in the Bride and Grooms Life. We want you to have the perfect day, one that is all about the celebration of your love. </p><p>That's why our wedding planners at Navya Lounge cater to your unique tastes, making sure every vision of your wedding day dream becomes a reality. </p><p>Music, Wedding Cakes, Creative Menus, Flower arrangements and Romantic Setting;  It's all here at Navya Lounge. We also offer entertainment from all kinds of bands, Dj’s, dance floors or any other inspiration you might have. </p><p>Weddings define elegance and as such, Navya Lounge will create the beauty, the service, the menu, and the wedding dream to be remembered forever. </p>";
	bdayStr = "<p>Parties to remember! Time to celebrate with family and friends!  Look no further than at Navya Lounge. We take care of this special day with specially baked birthday cakes, great food and ambience. Whether you are planning your child’s first birthday, a sweet 16 party or celebrating a 50-year milestone birthday, there is a birthday party catering menu for your event. Consider choosing a special party theme like a Bollywood bash or Hawaiian Lau and coordinate your menu with your theme for memorable birthday party catering experience by Navya Lounge.</p><p>We also offer entertainment from bands to dance floors, magicians, clowns any other inspiration you might have.</p>";
	barbStr = "<p>Let us make your next event a smokin success! Whether it's a company function, family reunion or a tailgate/game party we have the Best catered BBQ in Seattle. </p><p>Navya Lounge will prepare anything from chicken and lamb dishes to seafood specialities! We feature various menu items for the vegetarians as well, just ask! </p><p>We want everyone to enjoy the most unique mouth watering experience our taste buds will ever have and let us cater!</p>";
	corpStr = "<p>We understand the importance of team building, so we strive to make every corporate event we cater a memorable experience that brings people together over gourmet cuisine. Easy Gourmet Lunches - perfect for Lunch Meetings and Picnics. </p><p>Choose from a selection of items. Presented in convenient executive boxes or on trays. Disposables and beverages available. Allow 12 hours when placing your order. </p><p>We place importance on swift turn around time. We deliver too!</p>";
	themeStr = "<p>Theme Party Catering is a fun way to add flavor to your event at Navya Lounge. Whether it’s a costume party or a national holiday, our themed catering menus host a variety of options to meet your needs. </p><p>Hawaiian Luau’s, Arabian Nights, Bollywood Bash, Western Picnics, Oscars, and Halloween are some of the themed party catering we provide. </p><p>We offer bands, DJ’s and dance floors.</p>";
	banqStr = privStr = "<p>Fresh ingredients, innovative menus and outstanding service. We helped set the standard for catering in Navya Lounge and we continue to work to raise the bar. Of course, our emphasis remains in pleasing our clients.</p><p>Our services include: <ul><li>Buffet & Sit-down Dinners </li><li>Flexible Menus</li><li>Full Rental Service </li><li>Licensed Bar Service </li><li>Complete Fresh Flower Design </li><li>Total Event Planning </li></ul></p>";
	brunchStr = "<p>A family buffet will be served every weekend, something new will be happening. </p><p>Come out and be entertained as a family and enjoy your weekend !</p>";
	charityStr = fundStr = "<p> Hosting a fundraising event is not an easy task. Navya Lounge helps non-profit organizations: <ul><li>We offer discounted rates.</li><li>Maximize the return on each event by giving you top value for the dollars you spend. </li><li>Attract more people to the fundraiser </li><li>Create an event that stands above the rest so guests continue to attend year after year. </li></ul></p><p>From golf tournaments to poker nights to silent and live auctions, we set the mood to make your fundraising/charity events event a success. </p><p>Pay your guests the ultimate compliment, and contact us today! </p>";
	document.getElementById("eveClose").innerHTML = "X";
	document.getElementById("eveTitle").innerHTML = ocas;
	if(ocas == "Weddings") {
		document.getElementById("eveText").innerHTML = wedStr;
	}
	else if(eve == "bday") {
		document.getElementById("eveText").innerHTML = bdayStr;
	}
	else if(eve == "barb") {
		document.getElementById("eveText").innerHTML = barbStr;
	}
	else if(eve == "corp") {
		document.getElementById("eveText").innerHTML = corpStr;
	}
	else if(eve == "banq") {
		document.getElementById("eveText").innerHTML = banqStr;
	}
	else if(eve == "theme") {
		document.getElementById("eveText").innerHTML = themeStr;
	}
	else if(eve == "privpart") {
		document.getElementById("eveText").innerHTML = privStr;
	}
	else if(eve == "brunch") {
		document.getElementById("eveText").innerHTML = brunchStr;
	}
	else if(eve == "charity") {
		document.getElementById("eveText").innerHTML = charityStr;
	}
	else if(eve == "fund") {
		document.getElementById("eveText").innerHTML = fundStr;
	}
	else{
		document.getElementById("eveText").innerHTML = "";
	}
	centerPop();
	loadEvent();
}
