/**
 * MME Javascript stuff.
 * @author NOSE
 * 
 * @version 1.0.0 initial version
 *
 */
var MME = {

	/**
	 * Initialize.
	 */
	initialize : function(){
		// develop
		jQuery().devTools();
		
		// init all
		MME.initPrintLinks();
		
		// template home
		if (jQuery("body.home").size() > 0) {
			jQuery("#slideshow").slideshow({slWidth:510,slHeight:370,slInterval:5000});
		}
	},
	
	/**
	* Initializes the print stuff.
	*/
	initPrintLinks: function() {
		jQuery(".printLink").click(function(){window.print();});
	}
}
jQuery(document).ready(function(){
	MME.initialize();
});



