jQuery(function($){
	$('#shortcode_postlist li').hover(function(){
		if ($.browser.msie && $.browser.version == "9.0") {
					$(this).children('a').show();	
		}
		else{
			$(this).children('a').slideToggle();	
		}
		 }, 
		 function () {
			$(this).children('a').hide();
		});
});
