$(document).ready(function(){

	$("#message_dlg").dialog(    
	{ 
		autoOpen: false,
		height:   350,
		hide:     "clip",
		modal:    true,
		position: "center",
		resizable: false,
		show:     "scale",
		title:    "<b>TSM Website Message</b>",
		width:    500
	});

	$(".menu_item a").button();
	
	// set our styles on menu buttons
	// remove the jQUI defaults
	$(".menu_ul a").removeClass("ui-corner-all");
  // first one gets rounded corners at the top
	$(".menu_ul li:first-child a").addClass("ui-corner-tl ui-corner-tr");
  // last one gets rounded corners at the bottom
	$(".menu_ul li:last-child a").addClass("ui-corner-bl ui-corner-br");

  $(".page_header").addClass("ui_toolbar ui-widget-header");

//  $(".gradient").gradient({ topcolor: "#880000", bottomcolor: "#ffffff", horizontal: false, opacity: 100 });
	

});
