// JQuery

$(document).ready(function() {
	if (jQuery.fn.flash) {
			$('#page-flash').flash({
          src: 'home-main.swf',
          width: '100%',
		      height: 469
      }, { update: false } );
     $('#home-container').hide();
		 $('#home-secondary').hide();
	}
	
	//iphone/ipod hack to overcome js enabled but flash disabled scenario
	if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
    $('#home-container').show();
		$('#home-secondary').show();
  }
	
});