$(window).load(function() {
	if($('#left').height() < $('#right').height()) 
	{
	$('#left').height($('#right').height()-50); 
	}
	
	var imgWidth = $('.floatRight img').width();
	$('.floatRight').width(imgWidth);
	
	//topnav dropdowns
	$('.sub_menu').each(function() {
        $(this).parent().eq(0).hover(function() {
            $('.sub_menu:eq(0)', this).stop(true, true).slideDown(300);
        }, function () {
            $('.sub_menu:eq(0)', this).stop(true, true).slideUp(300);
        });
    });
	//$('.sub_menu li:odd').addClass('dropdownOdd');
});
