/**
	this is the javascript function file for the clear learning site. 
	
	It has all manner of items in here from form detection scripts to nav tweaks for ie etc.
	
	author: Andrew Fisher (andrew.fisher@xmlinfinity.com)
	version: 0.1

**/

$(document).ready(function() {

	if ($.browser.msie) {
	
		$("div#navarea ul li, div#secondnav ul li, div#ot_nav ul li").hover(function(){
				// this is the hover over function
				$(this).addClass("hover");
			},
			function() {
				// this is the hover out function
				$(this).removeClass("hover");
			});
	
		$("div#ot_nav ul li:even").addClass("lcol");
	
	}

});
