$(document).ready(function(){
		hovernav();
		showSort();
	});


function hovernav() {
	$('#mainnav li').hover(
			function() { $('ul', this).css('display', 'block'); },
			function() { $('ul', this).css('display', 'none'); }
	);
}

function showSort() {
	$('#sortarticles').click(function () {
      $("ul#articlesorter").slideToggle("slow");
    });

}

function doAjax(url){
	$.ajax({
		type: "GET",
		url: url,

		success: function(msg){
			alert( "This item has been added to your favorites" );
			//$.jGrowl(msg, { life: 3000 });
		}
	});
}
