$(function() {

	// check menu items
	menuInit();

});

// we need to filter out FF/MAC, it can't display opcatity and transparent flash together
function menuInit() {
	if( BrowserDetect.OS == "Mac" && BrowserDetect.browser == "Firefox" ) {
		$(".subnav").removeClass("trans");
	}
}