// JavaScript Document
if (document.images) {
	pic1= new Image(100,25);
	pic1.src = "http://www.clihome.com/images/bullet-minus.jpg";
}

$(document).ready(function() {
	$(".dropheader-noformat").click(function() { 
		$(this).siblings(".dropheader-noformat").css({background:"url(http://www.clihome.com/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(http://www.clihome.com/images/bullet-minus.jpg) left 5px no-repeat" }); 
		} else {
		$(this).css({ background: "url(http://www.clihome.com/images/bullet.jpg) left 5px no-repeat" });
		}
	});

	$(".dropheader").click(function() {
	$(this).siblings(".dropheader").css({ background: "url(http://www.clihome.com/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(http://www.clihome.com/images/bullet-minus.jpg) left center no-repeat" }); 
		} else {
		$(this).css({ background: "url(http://www.clihome.com/images/bullet.jpg) left center no-repeat" });
		}
	});

	$(".dropitem").hide();
});