// JavaScript Document
function navmenu(what,title) {
	if (what == "show") {
		$("#menu-"+title).show();
	} else {
		$("#menu-"+title).hide();
	}
}
 
function gtfo(page)
{
	window.location = page+".php";
}

$(document).ready(function() {
    var browser = navigator.userAgent;
    if (browser.indexOf('MSIE 7') > 0) {
	 	var left = $("#programs").width()+14;
        $('#menu-programs').css("margin","30px 0 0 -"+left+"px");
		left = $("#news").width()+14;
		$('#menu-news').css("margin","30px 0 0 -"+left+"px");
    }
});
