﻿$(function(){
    	// BUTTON


    	
    	// MENU	
		$('#rewards-menu').menu({ 
			content: $('#rewards-menu').next().html(), // grab content from this page
			showSpeed: 400 
		});
		
		// MENU	
		$('#account-menu').menu({ 
			content: $('#account-menu').next().html(), // grab content from this page
			showSpeed: 400 
		});

    });
    
    /* Search Box */
function showSearchDialogEvent() {

    $("#MsgBoxSearch").dialog({
            autoOpen: false,
            title : 'Search',
            width: 500,
            modal: true,
            buttons: {
            "Continue": function () 
            {
                $(this).dialog("close");
                eval($("#MsgBoxContinue").val());
            },
            "Cancel": function () {
             $(this).dialog("close");
        }
    }   
            
});

    var url='Search/SearchBox.aspx';
    $("#MsgBoxSearch").load(url).dialog("open");     
}
