	   $(document).ready(function() {
        $('#banner a').lightBox({fixedNavigation:true});
		
		//$('#restaurantthumbs a').lightBox({fixedNavigation:true});
		$('#popup').click(function(){
			var windowlink = $(this).attr("href");
			window.open(windowlink, null, "height=500, width=500, status, resizable, scrollbars, toolbar");
			return false;
		})
		
		
		$('#restaurantthumbs li').click(function() {
			var thumbImg = $(this).find('a').attr('href');
			$('#mainimage').attr('src', thumbImg) 
			return false;
		});
		
		$("table.menutable tbody").each(function() { 
			//console.log($(this))
			//var cc = this;
			//return this.each(function() {
				$(this).find('tr:even').addClass("even");
			//})
			//$(cc).each(function() {
				//console.log(this + " tr")
				//$(this + " tr:odd").addClass("even");
			//})
			// console.log('hi')
			//var tablerow = this;
			//$(tablerow + " tr:odd").addClass("even");
		})

	
			$(".fullmenulist li:even").each(function() { 
			//console.log($(this))
			//var cc = this;
			//return this.each(function() {
				$(this).addClass("even");
			//})
			//$(cc).each(function() {
				//console.log(this + " tr")
				//$(this + " tr:odd").addClass("even");
			//})
			// console.log('hi')
			//var tablerow = this;
			//$(tablerow + " tr:odd").addClass("even");
		})

	
    });
