var slideShow = new Array()

slideShow[0] = "/images/new/iphone.png";
slideShow[1] = "/images/new/iphone2.png";
slideShow[2] = "/images/new/iphone3.png";

function startSlideshow()
{
	processSlideshow("#iphone", slideShow, 2000, 1000);
}

jQuery(document).ready(function(){
	startSlideshow() ;

	jQuery("a[href*=.pdf]").click(function(){
		window.open(this.href);
		return false;
	});
		
	if (jQuery.browser.msie) {
		jQuery("h1").textShadow();
		jQuery("h2").textShadow();
		
		if (jQuery.browser.version < 8) {
			jQuery('#browser_warning').html('You\'re using an outdated version of Internet Explorer <a href="http://www.microsoft.com/windows/internet-explorer/default.aspx">update for safer browsing</a> or download <a href="http://www.google.com/chrome/" title="Google Chrome - PC, Mac &amp; Linux">Google Chrome</a>')
			jQuery('#browser_warning').slideDown() ;
		}
	}
});


