$(document).ready(function() {
		$('#banner').jparallax({xparallax: true, yparallax: true}, {});
		
		if (navigator.appVersion.substr(22,3) <= 7) {//@ <=IE7: To get backgrounds and colors working properly
			$('#nav li').hover(function() {
				$(this).css('backgroundColor','#fff');
				$(this).children('a').css('color','#8C2A3C');
			},
			function() {
				$(this).css('backgroundColor','transparent');
				$(this).children('a').css('color','#fff');
			});
		}
		//Below used to detect <=IE6 and apply a pngFix
		/*@cc_on
		@if (@_jscript_version <= 5.6)
			$(document).pngFix();
		/*@end @*/
});
