$(document).ready(function()
{
	repositionFloats();
	$(document).bind("documentzoom",function(event,data){
		repositionFloats();
	});
	$(window).resize(function(){
		repositionFloats();
	});

	try{
	initZoomers();}catch(e){}

	var filePath = window.location.href;

	$('#menu').find("li").each(function (i, el)
	{
		var itemPath = $(el).find("a").get(0).href;
		if (filePath == itemPath)
			$(el).addClass("current");

		$(el).click(function (event)
		{ 
			window.location = $(event.currentTarget).find("a").get(0).href;
		});
	});
	
	if ($.browser.msie && parseInt($.browser.version.substr(0,1)) < 8)
	{
		$("<div align=center style='margin-top:-9px;margin-bottom:14px;font:bold 12px;color:red'>Please use a modern browser for better browsing experience.</div>").insertBefore(".main");
	}
});

