var autoPlay = true;	
$(function() {
	if ($.cookie('returnvisitor') == 'true') {
		autoPlay = false;
	} else {
		$.cookie('returnvisitor', 'true', { expires: 7 });
	}
	var params = {};
	var attributes = {};
	
	params.wmode = "transparent";
	attributes.id = "flash";
	url = dir != "" ? dir + "inc/swf/home.swf" : "inc/swf/home.swf";
	swfobject.embedSWF(url + "?bAutoPlay=" + autoPlay, "presentation", "715", "360", "8.0.0", false, null, params, attributes);
	
	if ($("testimonial_flash")) {
		attributes.id = "testimonial_flash";
		swfobject.embedSWF("inc/swf/testimonials.swf", "testimonials_flash", "180", "130", "8.0.0", false, null, params, attributes);
	}
});