// JQuery

$(document).ready(function() {
	if (jQuery.fn.flash) {
		$('#page-flash').flash({
          	src: 'home-carousel.swf',
          	width: '99%',
		height: 509,
      	}, { update: false } );
      		//Hide the static image
     		//$('#main-box-no-flash').hide();
     		//Offset the outline
	}
	
	//iphone/ipod hack to overcome js enabled but flash disabled scenario
	if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
    		//$('#main-box-no-flash').show();

  }
	
});

