function equalHeight(group) {
    tallest = 0;
    group.each(function() {
        thisHeight = $(this).height();
        if(thisHeight > tallest) {
            tallest = thisHeight;
        }
    });
    //alert(tallest);
    group.height(tallest);
}

$(document).ready(function()
	{
		$(document).pngFix();
		
		/************************************************************
		* My Stuff
		
		************************************************************/
		$(".no-js").remove();
		
		
		$("ul.sf-menu").supersubs({extraWidth: 2}).superfish(
			{
				animation: {opacity:'show',height:'show'},  // fade-in and slide-down animation 
				speed:       'fast',
				delay:		 '400'
			}
		);

                equalHeight($(".sameHeight"));
		
	}
);