// JavaScript Document
if (document.images) {
	pic1= new Image(100,25); 
	pic1.src="images/bullet-minus.jpg";
}

$(document).ready(function() {
	$(".dropheader-noformat").click(function() { 
		$(this).siblings(".dropheader-noformat").css({background:"url(images/bullet.jpg) left 5px no-repeat"}); 
		$(this).next("div.dropitem").slideToggle(400).siblings("div.dropitem").slideUp(400);
		if($(this).next("div.dropitem").css("height")=="1px") {
			$(this).css({background:"url(images/bullet-minus.jpg) left 5px no-repeat"}); 
		} else {
			$(this).css({background:"url(images/bullet.jpg) left 5px no-repeat"});
		}
	});

	$(".dropheader").click(function() { 
		$(this).siblings(".dropheader").css({background:"url(images/bullet.jpg) left center no-repeat"}); 
		$(this).next("div.dropitem").slideToggle(400).siblings("div.dropitem").slideUp(400);
		if($(this).next("div.dropitem").css("height")=="1px") {
			$(this).css({background:"url(images/bullet-minus.jpg) left center no-repeat"}); 
		} else {
			$(this).css({background:"url(images/bullet.jpg) left center no-repeat"});
		}
	});

	$(".dropitem").hide();
});