﻿
var message = '';

$(document).ready(function() {
	$('body').cssHelper();

	if($('body').attr('class').indexOf('IE') > -1)
	{
		//ie doesn't support :last-child in css :(
		$("ul li:last-child").addClass("last");
		
		if($('body').attr('class').indexOf('IE6') > -1)
		{
			//ie6 doesn't support :hover on none a tags
			$("#navigation li").mouseenter(function() {
				$(this).addClass("iehover");			
			}).mouseleave(function() {
				$(this).removeClass("iehover");			
			});
		}
	}
});

