$(function() {
	//Documentation located in special.docs.js
	$("a.fancyimage").fancybox();

	$("body.home div#masthead").flash(
		{src:"flash/home-masthead.swf",
		 width:955,
		 height:344,
		 wmode:"transparent",
		 quality:"high"},
		 {version:"8"},
			function(htmlOptions) { //Use this to specify a query string, take out if not needed.
				htmlOptions.flashvars.imagesXML = "/flash/xml/home-masthead.xml";
				$(this).html($.fn.flash.transform(htmlOptions));
		});
	
	$("div#photo-gallery").flash(
		{src:"flash/photo-gallery.swf",
		 width:660,
		 height:480,
		 wmode:"transparent",
		 quality:"high"},
		 {version:"8"},
			function(htmlOptions) { //Use this to specify a query string, take out if not needed.
				//htmlOptions.flashvars.epostConfigXML = "/flash/xml/epostConfig.xml";
				htmlOptions.flashvars.imagesXML = "/flash/xml/images.xml";
				//htmlOptions.flashvars.langXML="/flash/xml/i18n/"+LANG+"_formLabels.xml";
				htmlOptions.flashvars.browser = BROWSER;  //Used for SSP Postcard feature, comment out if not needed.
				$(this).html($.fn.flash.transform(htmlOptions));
		});
	$('div.specialist').expand({openText: 'Read More <img src="/images/layout/down-arrow.gif" alt="" />', closeText: 'Hide Info <img src="/images/layout/up-arrow.gif" alt="" />', longClass: '.specialist-long-info'});
});