$(function() {

	$("table.sm_calendar td").hover( function () {
		$(this).children("div.events_today").fadeIn("fast");
		}, 
		function () {
		$(this).children("div.events_today").fadeOut("fast");
		}
	);

	function equalHeights(domcollection) {
		var maxHeight = 0;
		domcollection.each(function() {
			if( $(this).height() > maxHeight ) {
				maxHeight = $(this).height();
			}
		});
		domcollection.height(maxHeight);
	}
	equalHeights($("ul#home_boxes > li div.homebox_content"));
	
	//$("ul.sf-menu:first").superfish();


 $("ul.sf-menu:first").supersubs({ 
            minWidth:    12,   
            maxWidth:    27,   
            extraWidth:  1                             
        }).superfish();  
   
	                       
                        

});