$(function() {
	$(".home #masthead").flash(
		{src:"flash/masthead.swf",
		 width:594,
		 height:393,
		 wmode:"transparent",
		 quality:"high"},
		 {version:"8"},
			function(htmlOptions) { //Use this to specify a query string, take out if not needed.
				htmlOptions.flashvars.xmlFile = "flash/xml/masthead_images.xml";
				$(this).html($.fn.flash.transform(htmlOptions));
		});	   
		   
	$("#photo-gallery").flash(
		{src:"flash/photo_gallery.swf",
		 width:600,
		 height:420,
		 wmode:"transparent",
		 quality:"high"},
		 {version:"8"},
			function(htmlOptions) { //Use this to specify a query string, take out if not needed.
				htmlOptions.flashvars.xmlFile = "flash/xml/photo_gallery.xml";
				$(this).html($.fn.flash.transform(htmlOptions));
		});
	
	// kill bottom border for disable menu sections	
	$('ul.table-menu').each(function() {
		var found = $(this).find("li");
		if (found.length == 0) {
			$(this).remove();
		}
	});
	
});


