/*  
 * Created by Henry YP @ monkiki.st
 * Copyright (c) 2009 monkiki <www.monkki.st>
 *
 * email henryyp @ monkiki.st
 *
 * Website built by monkiki with Prototype library, v1.6.2
 * 
 * 
 * This is the Main JS file to execute all scripts
 * This script is freely distributable under the terms of an MIT-style license.
/*------------------------------------------------------------------------------*/



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

 	//var topSlider = new MonkiControl("topcontrol",{target:"content"});
	
 	//var topmenu = new TopMenu ("topmenu");

	var menu = new MonkiMenu("content");
	
	//var tube = new MonkiTube("content");
	
	//some typo changes for firefox
	if (Prototype.Browser.Gecko && Prototype.Environment.Win) {
		
		var adjust = $('content');
		var getall = adjust.select('div.title-divs');
		
		getall.each(function(s, index) {
				
			s.addClassName('title-divs-firefox');			 				 
		});
		
	}
});