/* ----------------------------------------------------------------------- */
/* --- machina.co.uk 2010  ----------------------------------------------- */
/* ----------------------------------------------------------------------- */

var deus = {};

(function() {
	if ("jQuery" in window && 'deus' in window) { 
		
		deus.core = {

			//var1 : "function #1",
			//var2 : "function #2", 
		
			init : function() {
				
				deus.core.bindEvents();
			},	
	
			bindEvents : function() {
			
				$( "ul.menu .tog a").click(function(event){
					event.preventDefault();
					$(this).parent().next("ul.sm").animate({height:'toggle'}, 'slow', 'swing', function() {

					})
				});
				
				$( ".moreinfo a").click(function(event){
				
					event.preventDefault();
					
					$(".info").animate({height:'toggle'}, 'slow', 'swing', function() {

					})
					
				});
				
			
			}	
    	};
		
		jQuery(function($) {

			deus.core.init();
    		
 		});
	}
})();

/* ----------------------------------------------------------------------- */
