$(window).load(function() {
	$('#featured').flash(
			{ src: 'slideshow.swf',
				width:460,
				height:270,
				wmode: 'transparent'},
			{ expressInstall: true }
	);
	
	$("FORM").find(':input:visible:enabled:first').focus();
	
	$(".required").each(function(i) {
		var name = $(this).attr("name");
		$("LABEL").filter("[for='"+name+"']").append('<span class="red">*</span>');
	});
});
