///custom javascript

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function flashFullScreen(div){
	var viewportwidth;
	var viewportheight;
	// the more standards compliant browsers (mozilla/netscape/opera/IE7) use window.innerWidth and window.innerHeight
	if (typeof window.innerWidth != 'undefined')
	{
	  viewportwidth = window.innerWidth,
	  viewportheight = window.innerHeight
	}
	// IE6 in standards compliant mode (i.e. with a valid doctype as the first line in the document)
	else if (typeof document.documentElement != 'undefined'
	 && typeof document.documentElement.clientWidth !=
	 'undefined' && document.documentElement.clientWidth != 0)
	{
	   viewportwidth = document.documentElement.clientWidth,
	   viewportheight = document.documentElement.clientHeight
	}
	// older versions of IE
	else
	{
	   viewportwidth = document.getElementsByTagName('body')[0].clientWidth,
	   viewportheight = document.getElementsByTagName('body')[0].clientHeight;
	}
	$(div).css({'width': "100%",'height': viewportheight }).fadeIn('slow');
};
 $(document).ready(function(){
							if(flashCheck()) {
			flashFullScreen('#home #header');

							}
							});
var page_id;
function initAccordionMenu() {
	menu_id = "#accordion_menu";
	
	$(menu_id+" ul").each(function(index, domEle) {
		if($(this).attr("class") != "nohide"){
			$(this).hide();
		}else{
			$(this).siblings().addClass('active');
		}
	});
	
	$(menu_id+" li").each(function(index, domEle) {
		
		if($(this).find("a").attr("id") == page_id){
			 $(this).oneTime(2000, function() {
				$(this).find("ul").slideDown('slow', 'easeOutQuad');
			});
			$(this.children).addClass('active');
		}
	});
		$(menu_id+" li a").click(
		function() {
			if($(this).attr("href") == "#" || $(this).attr("id") == page_id){
				var checkElement = $(this).next();
				if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
					if($(this).attr("class") != "nohide"){
							$(checkElement).slideUp('normal');
							$(checkElement).siblings().removeClass("active");
						}
						
					return false;
				 }
				if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
					$(menu_id+" ul").each(function(index, domEle) {
						if($(this).attr("class") != "nohide"){
							$(this).slideUp('normal');
							$(this).prev().removeClass("active");
						}												
					});
					checkElement.slideDown('normal');
					$(this).addClass('active');
					return false;
				 }
			 }
		 });
	
 }