﻿var announceWindow;

var defaultRules = 
{   
    'body' : function (element)
    {
        setSelectedMenuImage("imgHome");
        
        /*if (!announceWindow)
        {
       
           announceWindow = new Window('news', {className: "spread", 
                                                    title: "Scola Cantorum Series", 
                                                    resizable: false, 
                                                    showEffect:Element.show, 
                                                    hideEffect: Element.hide,
                                                    minimizable: false,
                                                    maximizable: false,
                                                    width:350,
                                                    height:120
                                                    });
            announceWindow.setContent('announceWindow');
            //announceWindow.setDestroyOnClose();
       }
        
        if (announceWindow)
            announceWindow.showCenter();*/
    },
    
	'#moreAboutUs' : function(element)
	{
		element.onclick = function()
		{
			location.href = "About.aspx";
		}
	},
	
	'#ourLocations' : function (element)
	{
	    element.onclick = function ()
	    {
	        location.href = "Locations.aspx";
	    }
	},
	
	'#getInvolved' : function (element)
	{
	    element.onclick = function ()
	    {
	       location.href = "GetInvolved.aspx";
	    }
	}
}

Behaviour.register(defaultRules);

