	$(document).ready(function() {

	jQuery("table.contentpaneopen_1,table.contentpaneopen_2,table.contentpaneopen_3,table.contentpaneopen_4,table.contentpaneopen_5").each ( function () {
		
		var isBlog = true;// jQuery(this).find ('.article-overview').size() > 0;

		if ( isBlog )
		{
			var readon = jQuery(this).find ('a.readon');
			var img = jQuery(this).find ("img");
			var hl = jQuery(this).find ("div.article_small_headline,div.article_big_headline");
			
			if (readon.size() > 0)
			{
				img.click ( function () {				  
					window.location.href = readon.attr ("href");
				});
			
				hl.click ( function () {				  
					window.location.href = readon.attr ("href");
				});
				
				img.css ("cursor", "pointer");
				hl.css ("cursor", "pointer");
			}
		}
	});

	jQuery('#junQat_logo_pull_down_trigger').click(function () {
		if (jQuery('#junQat_logo_pull_down').is(":hidden")) {
			jQuery('#junQat_logo_pull_down')
			.slideDown("slow")
			.each(function() {
				jQuery('#junQat_logo_pull_down_trigger_text_1').fadeOut("normal");
				jQuery('#junQat_logo_pull_down_trigger_text_2').fadeIn("normal");
			});
		}
		else
		{
			jQuery('#junQat_logo_pull_down')
			.slideUp("fast")
			.each(function() {
				jQuery('#junQat_logo_pull_down_trigger_text_2').fadeOut("fast");
				jQuery('#junQat_logo_pull_down_trigger_text_1').fadeIn("fast");
			});
		}
	});
	
});
