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

var SetPage = 0;

jQuery(document).ready(function(){ 
	jQuery("ul.sf-menu").superfish().find('ul').bgIframe({opacity:false});
});	

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