/*******************************
 * @author Aron Filbert 03/13/09
 *******************************/

var SetPage = 0;

$(document).ready(function(){ 
	$("ul.sf-menu").superfish();	
});	

function SetImageStatus(page) {
	SetPage = page;
	$('ul#mainMenu > li')
       .each(function(i) {
			if (i == SetPage) {
				$(this).children("div").removeClass("m_" + this.id);
				$(this).children("div").addClass("m_" + this.id + "Over");
	        } else {
				$(this).children("div").addClass("m_" + this.id);
				$(this).children("div").removeClass("m_" + this.id + "Over");
			}		
   });
}