$(document).ready(function(){ 
	
	//show the full header on the homepage only
	var filename = $('#indexHomeBody').length ? 'header' : 'headerstatic';
	
	//attempt to inject the flash header
	flashContainerEl = $('#headerpic').flash({
		src: 'includes/templates/freetemplate2/flash/' + filename +'.swf',
		width: 934,
		height: 150,
		wmode:'transparent'
	});

	//determine if it was successful
	if (-1 !== flashContainerEl.html().toLowerCase().indexOf('embed')) {
		flashContainerEl.css('background-image', 'none'); //remove the bg image
	} else {
		flashContainerEl.css('background-image', 'url(/includes/templates/freetemplate2/images/hd.jpg)'); //fall back to the image
	};
	
	//.content h3+p IE6 fix
	$('.content h3 + p').addClass("parafix");
	

	//attempt to inject the flash carousel
	flashContainerEl = $('#carousel').flash({
		src: 'includes/templates/freetemplate2/flash/carousel.swf',
		width: 550,
		height: 250,
		wmode:'transparent'
	});
});