$(function() {

	//Set drop menu
	initializeMenu();
	
	//Set accordion
	myMenu = new SDMenu("my_menu");
	myMenu.init();
	
	//Set image slider
	initializeRotator();

	//z-index stacking fix
	var zIndexNumber = 10000;
	$('div div:not(.skipZ)').each(function()  //skipZ class is used to denote div which shouldn't be considered
	{
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 1;
	});
	
})

window.onload = function() {
};

window.onscroll = function() {
};


window.onresize = function() {
};




