$(function() {
	$("#introVideo").dialog({
		width: 370,
		height: 280,
		autoOpen: false,
		modal: true,
		draggable: true
	});
});

function showVideo() {
		if ($('#introVideo').html().length == 0 ){
			var videoContent = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"\
					codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,16,0"\
					width="330" height="230" >\
					<param name="movie" value="shepherds_care.swf">\
					<param name="quality" value="high">\
					<param name="play" value="true">\
					<param name="LOOP" value="false">\
					<embed src="shepherds_care.swf" width="330" height="230" play="true" loop="false" quality="high" \
						pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash">\
					</embed>\
				</object>';
			$('#introVideo').append( videoContent );
		}
		$('#introVideo').dialog("open");
		return false;
}
