jQuery(document).ready(function(){
	$(".hoverdown").next().hide();
	$(".hoverdown").mouseover(function() {
		$(this).next().fadeIn(500);
		return false;
	}).next().hide();
	$(".hoverdown").mouseout(function() {
		$(this).next().fadeOut(100);
		return false;
	})
});
jQuery(document).ready(function(){
	$(".sidebar_module .info_dot_left").css('cursor','pointer').click(function() {
		$(this).toggle();
		$(this).siblings("p").slideToggle("fast");
		$("#lower_stream").children("ol").children("li.primary").slideToggle("fast");
		if ($("#lower_stream").children("ol").children("li:nth-child(2)").hasClass('secondary')){
			$("#lower_stream").children("ol").children("li:nth-child(2)").removeClass("secondary").addClass("secondary_paged")
		}else{
			$("#lower_stream").children("ol").children("li:nth-child(2)").removeClass("secondary_paged").addClass("secondary")
		}
		return false;
	});	
	$(".clickdown").click(function() {
		$(this).parent().next().slideToggle("fast");
		return false;
	}).parent().next().hide();	
	$(".view_gallery").css('cursor','pointer').click(function() {
		$("#single_content").toggle();
		$("#gallery_single").hide();
		$('.view_post').show();
		$("#gallery_full").show();
		return false;
	});
	$(".view_post").css('cursor','pointer').click(function() {
		$("#single_content").toggle();
		$("#gallery_single").show();
		$('.view_post').hide();
		$("#gallery_full").hide();
		return false;
	});
});




