google.load("jquery", "1.5");
google.setOnLoadCallback(function()
{  
	// IE6 fixes
	$('#menu li').hover(
					function () {
						$(this).addClass('sfhover');
					},
					function () {
						$(this).removeClass('sfhover');
					});
	$(".box:first-child").addClass("firstchild");
	$(".boxes2:first").addClass("firstchild");
	$(".boxes3:first").addClass("firstchild");
	$(".boxes4:first").addClass("firstchild");
});
