// Modified and taken from ui_demos.js
$(function(){
	// Tracks Ahead Dialog			
	$('#tracksAheadDialog').dialog({
		modal: true,
		overlay: {
			opacity: 0.7,
			background: "black"
			},
		draggable: false,
		resizable: false,
		autoOpen: false,
		width: 400,
		buttons: false
	});


	// Tracks Ahead Dialog Link
	$('#tracksAheadDialogText_link').click(function(){
		$('#tracksAheadDialog').dialog('open');
		return false;
	});
	$('#tracksAheadDialogButton_link').click(function(){
		$('#tracksAheadDialog').dialog('open');
		return false;
	});


	//hover states on the static widgets
	$('#tracksAheadDialogText_link, #tracksAheadDialogButton_link, ul#icons li').hover(
		function() { $(this).removeClass('ui-state-hover'); }, 
		function() { $(this).removeClass('ui-state-hover'); }
	);
});