$(document).ready(function() {
	
	// tell the body we have javascript
    $("body").addClass("js");

	if($("#iphone-flip").length>0){
		// hide main container
		$("#pageHolder").addClass("hide");
		$.preload( '#iphone-flip img', {
			onFinish:runFlip,
			threshold: 2
		});
	}
	function runFlip() {
		$("#pageLoader").addClass("hide");
		$("#iphone-flip").removeClass("hide");
		$('#iphone-flip').cycle({
	    	fx:     'fade',
	    	sync:    1,
			timeout: 3500,
			speed: 	 500,
			nowrap:  0
	    });
	}
		
});