$(document).ready(function(){
	$("inputfield").placeholder();
	$("#flash_placeholder").click(function(event){
		$(this).html('<object width="350" height="250"><param name="movie" value="film.swf"><embed src="film.swf" width="350" height="250"></embed></object>');
	});
	
	$('#dialog').dialog({
			autoOpen: true,
			width: 600,
			buttons: {
				"Ok": function() { 
					$(this).dialog("close"); 
				}
			}
		});
});
