//------------------------------------
//	FUN.JS
//	Author: 	Engage Interactive
//	Requires:	jquery 1.3.2
//				global.js
//				cufon.js
//				gazz.js
//------------------------------------


//BEGIN jQuery
$(function(){


	
	//  COLOURBOX
	
	$(".boogielaunch").colorbox({width:910, height:630, inline:true, href:"#boogie"});
	$(".waiterlaunch").colorbox({width:460, height:480, inline:true, href:"#waiter"});
	$(".whacklaunch").colorbox({width:810, height:630, inline:true, href:"#whack"});


	//  FLASH EMBEDDING FOR GAMES
	
	$('#boogie').flash({
    src: '/assets/giraffe/flash/games/jungle_boogie.swf',
    width: 850,
    height: 550
	});
	
	$('#waiter').flash({
    src: '/assets/giraffe/flash/games/tip_the_waiter.swf',
    width: 400,
    height: 400
	});
	
	$('#whack').flash({
    src: '/assets/giraffe/flash/games/whack-a-giraffe.swf',
    width: 750,
    height: 550
	});

	
//END jQuery
});