$(document).ready(function() {
	$("div.drawers-nav> div.section-group").hide();  
	$("div.drawers-nav> div.section-group-on").show();  
	$("div.drawers-nav> div.sub-nav").click(function() {
		$(this).next("div.section-group").toggle('fast').siblings("div.section-group:visible").slideUp('fast');
		$(this).next("div.section-group").siblings("div.section-group-on:visible").slideUp('fast');
		$(this).next("div.section-group-on").toggle('fast').siblings("div.section-group:visible").slideUp('fast');
		
		var isSet = $("img", this).attr("src").indexOf("arrow-grey-down.png") > 0;
		
		$("div.drawers-nav img").attr("src", pathToRoot + "images/common/arrow-grey-right.png");
		
		if (isSet) {
			$("img", this).attr("src", pathToRoot + "images/common/arrow-grey-right.png");
		} else {
			$("img", this).attr("src", pathToRoot + "images/common/arrow-grey-down.png");
		}
		
	});
}); 


