
$(document).ready(function(){

$('.moreDetails').hide();

$('.showMore').click(function(){
	// $('.moreDetails').fadeIn('slow');
	$(".moreDetails").slideDown("slow");
	$('.showMore').fadeOut('slow');
});

$('.hideMore').click(function(){
	// $('.moreDetails').fadeOut('slow');
	$(".moreDetails").slideUp("slow");
	$('.showMore').fadeIn('slow');
});

$(function() {
     $(".sosNavItemDrop").hover(
          function() { $(this).css("background-color","#646464"); $("div", this).show(); },
          function() { $(this).css("background-color","transparent"); $("div", this).hide(); }
     );
});

});
