/**
 * CoMate Site Javascript
 * 
 * @author Mark Story
 */
$(document).ready(function() {
	coMate.init();
});

coMate = {};

/**
 * Namespace Init
 * 
 */
coMate.init = function() {
	for (prop in this) {
		if (this[prop].init && typeof this[prop].init() == 'function' ){
			this[prop].init();
		}
	}
};

coMate.menus = {
	init: function(){
		if (jQuery.browser.msie) {
			$('#block-menu-2 .menu li').hover(function(){
				$(this).addClass('over');
			}, function(){
				$(this).removeClass('over');
			});
		}// End IE6 menu Shim
	}
};
