jQuery.noConflict();

/*
 * General DOM ready statemenets
 */
jQuery(function($) {
	
	//IE
	if ($.browser.msie){
		//IE6 or lower
		if ($.browser.version <= 6) {
		
			$('#subnav li:first-child').addClass('first-child')
			$('#nav > li').hover(function(){ $(this).addClass('over')}, function(){ $(this).removeClass('over')})
		}
	}

	var userAgent = navigator.userAgent.toLowerCase();
	// Figure out what browser is being used
	jQuery.browser = {
		version: (userAgent.match( /.+(?:rv|it|ra|ie|me)[\/: ]([\d.]+)/ ) || [])[1],
		chrome: /chrome/.test( userAgent )
	};
	if ($.browser.chrome) $('#nav').css('font-size','16px')
	
});

(jQuery);


