$(document).ready(function(){
	if ( jQuery.browser.safari ){
		$("#footer").css({fontWeight: "normal"});
		$("#footer").css("letter-spacing","-1px");//.css("word-spacing","5px");
	}
  $('img[@src$=.png]').ifixpng();

	$("#home #planes").hide();
	setTimeout(function(){$("#home #planes").fadeIn(3000);}, 1000);

	$(".marquee").marquee();

	$(".scroll").scroll({speed: 7});

	if ( $("#theteam").length ) {
		var browser = navigator.userAgent;
		var platform = navigator.platform;
//		alert( browser + " ---- " + platform );
//		if ( browser.indexOf('Mozilla') < 0 && browser.indexOf('Machintosh') < 0 ) {
//			$("#theteam").cycle({
//				fx: 'scrollDown',
//                speed: 2500,
//				timeout: 2000
//			});
//		} else {
	/*
			$("#theteam").cycle({
				fx: 'fade',
                speed: 2500,
				timeout: 2000
			});*/
//		}
	}	
});