$(document).ready(function() {	
	//load content
	$("#dftbar-content").load("/vosa/css/content.html");	
	//javascrpt enabled => remove link
	$('a.explore').attr({href: "#"});
	//a more elegant solution, but removes the option of singling out each toggle for attention
	$('.explore').click(function() {
		$('#dftbar-content').toggleClass('hidden');	
	});		
	//switch explore to close
	$("a.explore img").bind("click", function() {
		var src = ($(this).attr("src") === "/vosa/images/dftbar-explore.gif") ? "/vosa/images/dftbar-explore-close.gif" : "/vosa/images/dftbar-explore.gif";
		$(this).attr("src", src);
	});
 	//enable close img link
	$('.explore-close') 
		.livequery('click', function(event) { 
			$('#dftbar-content').toggleClass('hidden');
			$("a.explore img").attr({src: "/vosa/images/dftbar-explore.gif"});
			return false; 
	});
});
