jQuery(document).ready(function() {
	var $j = jQuery;
	var tagstate = $j('span.tagg, span.tagger'); // TAGG
	tagstate.removeClass('ragg'); // TAGG by default the class ragg is shown which dsiplays everything, removing via javascript lets the interactive fun begin!
	
	
	$j(".widget ul").hide();
	$j(".widget .textwidget").hide();
	
	$j(".Hline").click(
		function() { $j(this).siblings().slideToggle("fast");
	});
	
	// TAGG Start	
	tagstate.hover(
	function() {
		tagstate.addClass('ragg');
	},
	function(){
		tagstate.removeClass('ragg');
	});
	// TAGG End
});
