var omf = {
// -------
	init: function() {
		this.infobox();
		this.general();	
	},
// -------		
	general: function() {	
		
		$('img[title], img[alt]').removeAttr('title').removeAttr('alt');			
		
		$('.trigger', '#header').mouseenter(function() {
			$('#footer').stop(true,true).slideDown(300);
		})
	
		$('#footer').mouseleave(function() {
			$('#footer').stop(true,true).slideUp(200);			
		});
	
		$('.trigger', '#twtr').click(function() {
			$('section', '#twtr').toggle(200);
		})
	},
// -------	
	infobox: function() {
		$('.box').hover(
			function() {
				$(this).find('.summary').stop(true,true).slideDown(400);
			},
			function() {
				$(this).find('.summary').stop(true,true).slideUp(400);
			}			
		);
	}		
};
// -------
jQuery(function() {
	omf.init();
});
