$(document).ready(function(){
	// We need a clear before the start of diningTable
	$('ul#diningInfo').after("<div class='clear'></div>");
	
	// remove the border from the last section
	//$('.diningTable td.date:last').css("border-bottom", 0);
	//$('.diningTable td.event:last').css("border-bottom", 0);
	//$('.diningTable td.address:last').css("border-bottom", 0);
	//$('.diningTable td.cuisine:last').css("border-bottom", 0);
	
	// Add pdf icon for pdf downloads
	$('.diningTable td.cuisine span').before("<img src='images/icon_pdf.gif' />&nbsp;");
	$(".youtube").colorbox({iframe:true, innerWidth:425, innerHeight:344});
	
	// start slideshow
    $('#slideshow').cycle({
	    fx:     'fade',
        speed:  '500',
        timeout: 2000,
		after:     function() {
            $('#caption').html(this.alt);
        }
    });

	$('#pause').toggle(function() { 
           $('#slideshow').cycle('pause'); 
           $(this).html('resume'); 
            }, function() { 
           $('#slideshow').cycle('resume', true); //slideshow starts up instantly when set to true
           $(this).html('pause'); 
        }); 
});	



