$(document).ready(function()
{  
	$("#pageNavigationBar").corner("round");
	$(".roundedBoxHeader").corner("round top");
	$(".roundedBoxFooter").corner("round bottom");  
	//
	$(".stripeMe tr").mouseover( function() { $(this).addClass("over");    } );
        $(".stripeMe tr").mouseout(  function() { $(this).removeClass("over"); } );
        $(".stripeMe tr:even").addClass("alt");
	//
	$(".fadeMe").fadeTo("fast", .4 );   
        $(".fadeMe").hover( function() { $(this).fadeTo("fast", 1); }, function() { $(this).fadeTo("slow", .4); } );
        //
	$(".fadeFlag").fadeTo("fast", .4 );
        $(".fadeFlag").hover( function() { $(this).fadeTo("fast", 1); }, function() { $(this).fadeTo("slow", .4); } );
        //
});

function showHide(elementId)
{	
	$("#"+ elementId).slideToggle("slow");
}	