$(document).ready (function() {
	
	// Header Flash
	$('#site-logo').flash(
		{
	    	src: 'framework/swf/site-logo.swf',
	    	width: 1214,
	    	height: 102,
	    	wmode: 'transparent'
		},
		{
			update: false,
			version: 7
		}
	);
	
	// Home page Flash
	$('#home-flash').flash(
		{
	    	src: 'framework/swf/home.swf',
	    	width: 538,
	    	height: 471,
	    	wmode: 'transparent'
		},
		{
			update: false,
			version: 9
		}
	);
	
	// Splash page Flash
	$('#splash').flash(
		{
	    	src: 'framework/swf/splash.swf',
	    	width: 960,
	    	height: 500,
	    	wmode: 'transparent'
		},
		{
			update: false,
			version: 9
		}
	);
	
	// Tax page sidebar
	$('body.tax-main div#content-sub').flash(
		{
	    	src: 'framework/swf/content-sub.swf',
	    	width: 185,
	    	height: 400,
	    	wmode: 'transparent',
	    	flashvars: { xmlfile: 'framework/xml/tax.xml' }
		},
		{
			update: false,
			version: 9
		}
	);
	
	// Valuation page sidebar
	$('body.valuation-main div#content-sub').flash(
		{
	    	src: 'framework/swf/content-sub.swf',
	    	width: 185,
	    	height: 400,
	    	wmode: 'transparent',
	    	flashvars: { xmlfile: 'framework/xml/valuation.xml' }
		},
		{
			update: false,
			version: 9
		}
	);
	
	// Real Estate page sidebar
	$('body.realestate div#content-sub').flash(
		{
	    	src: 'framework/swf/content-sub.swf',
	    	width: 185,
	    	height: 400,
	    	wmode: 'transparent',
	    	flashvars: { xmlfile: 'framework/xml/realestate.xml' }
		},
		{
			update: false,
			version: 9
		}
	);
	
	// Oil & Gas page sidebar
	$('body.oil-gas div#content-sub').flash(
		{
	    	src: 'framework/swf/content-sub.swf',
	    	width: 185,
	    	height: 400,
	    	wmode: 'transparent',
	    	flashvars: { xmlfile: 'framework/xml/oil-gas.xml' }
		},
		{
			update: false,
			version: 9
		}
	);
	
	// Focus User Name field
	$('input#name').focus();
		
});