$(function() {

	function staticNav() { 
		var sidenavHeight = $("#sidenav").height();
		var winHeight = $(window).height(); 
		var browserIE6 = (navigator.userAgent.indexOf("MSIE 6")>=0) ? true : false;

		if (browserIE6) {
			$("#sidenav").css({'position' : 'absolute'});
		} else {
			$("#sidenav").css({'position' : 'fixed'});
		}
	
		if ((sidenavHeight  > winHeight) || (winHeight < 674)) {
			$("#sidenav").css({'position' : 'static'});
		}
		$('#bg_main').css('min-height', winHeight);
	}
	
	$('body#bdy-gigs td.gigpress-venue a, body#bdy-home td.gigpress-venue a').click(function() {
		$(this).attr('target', '_blank');
	});
	
	
	
	function navBg() { 
		if ($(window).width() < 965) $('#sidenav').addClass("bgWhite"); else $('#sidenav').removeClass("bgWhite");
	}
	var isHome = ($('body#bdy-home').length > 0); 
	if (!isHome) staticNav(); 
	navBg();
	$(window).resize(function () { //Each time the viewport is adjusted/resized, execute the function
		if (!isHome) staticNav();
		navBg();
	});
	if ($('body#bdy-contact').length > 0) {	$('#contacts_home a').click(function() {return false;});}

});
























