//Globals
var macbox;						
var utils;
var ulRandomizer;

document.observe("dom:loaded", function(){									
	start();	
});


function start(){
	var imagePath = 'http://www.danmacias.com/wp-content/themes/dans_playground/images/';
	
	utils = new DMacUtils();
	macbox = new MacBox();
	if (!Prototype.Browser.IE) initPaperRollover();  //Paper not firing Sibling event in IE (Temporarily Disabled)
	initIfEmployer();	
	ulRandomizer = new BulletRandomizer([imagePath + 'bullet_blue.png', 
									 imagePath + 'bullet_yellow.png',
									 imagePath + 'bullet_gray.png']);
}
