$(function()
{
	fix_height();
});
function fix_height()
{
	if($.browser.msie && $.browser.version=="6.0")
	{
		$('#background').height($(document).height());
	}
	if($('#background').height() > $('#website').height())
	{
		
	}
}
// jQuery document ready
$(document).ready(function()
{
	if($('#website #content .menu ul li').is(':visible'))
	{
		$('#website #content .menu ul li').each(function()
		{
			var title = $(this).children('a').attr('title');
			if(title != '')
			{
				title = title.toLowerCase();
				$(this).addClass(title);
			}
		});
	}
});
