jQuery.noConflict();

jQuery("#quicklinks .content").hide();

jQuery(document).ready(function() {
	// Quicklinks
	//alert(jQuery('#pid0').html());
	if(jQuery('#pid0').html() == null) {
		 jQuery("#quicklinks .content").hide();

		 jQuery("#quicklinks").css("cursor", "pointer");
		 jQuery("#quicklinks .title").css("backgroundImage", "url(fileadmin/templates/img/box-title-down-bg.png)");

		jQuery("#quicklinks .title").click(function() {
			var content = jQuery("#quicklinks .content");

			if(jQuery(content).is(":hidden")) {
				jQuery(content).slideDown("fast");
				jQuery("#quicklinks .title").css("backgroundImage", "url(fileadmin/templates/img/box-title-up-bg.png)");
			} else {
				jQuery(content).slideUp("fast");
				jQuery("#quicklinks .title").css("backgroundImage", "url(fileadmin/templates/img/box-title-down-bg.png)");
			}
		});
	}
	
	if(jQuery('#pid154').html() != null) {
		jQuery("#quicklinks .content").show();
	}
	
});