// increase the default animation speed to exaggerate the effect
$.fx.speeds._default = 1000;
$(document).ready(function(){
	$('#delPlayerDialog').dialog({
		autoOpen: false,
		modal: true,
		hide: 'explode',
		show: 'blind',
		resizable: false,
		buttons: { "Cancel": function() { $(this).dialog("close"); }, "Ok":function(){window.location.href=$('.delPlayer').attr("href"); }}
	});
	
	$('.jButton').button();
	$('.delPlayer').button();
	$('.submit').button();
	
	$('.delPlayer').click(function() {
		$('#delPlayerDialog').dialog('open');
		return false;
	});
});


