/**
 * @package CHEEKY CASTLE
 * @author Bonsai Media / Christian Duller
 * @version 1.0
 * @copyright 2011, Bonsai Media
*/

/* CHEEKY CASTLE object which contains all our functions/etc */
var cc = cc || {};

/* document ready.... magic happens here */
$(document).ready(function(){
	cc.init();
});
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////


/**
 * Initialise the CHEEKY CASTLE website and various features.
 */
cc.init = function() {
	// if not iPhone or iPod
	if(!cc.isiPhone()){
		if($("#page-home").length)
			swf_src = "flash/homepage.swf";
			
		if($("#page-subpage").length)
			swf_src = "flash/subpage.swf";
			
			flashembed("header", 
				{
					src: swf_src, 
					wmode: 'opaque'
				});
	}else{
		var addedElement = "<a href='index.html' id='nav_home'>Home</a>"+
						"<a href='about-us.html' id='nav_about'>About Us</a>"+
						"<a href='products.html' id='nav_products'>Food Products</a>"+
						"<a href='jumping-castles.html' id='nav_castles'>Jumping Castles</a>"+
						"<a href='make-a-booking.html' id='nav_booking'>Make a Booking</a>"+
						"<a href='make-a-booking.html' id='nav_contact'>Contact Us</a>";
		$('#header').append(addedElement);
	}
}

// Return boolean TRUE/FALSE
cc.isiPhone = function(){
	return (
	(navigator.platform.indexOf("iPhone") != -1) ||
	(navigator.platform.indexOf("iPod") != -1) ||
	(navigator.platform.indexOf("iPad") != -1)
	);
}
