$(document).ready(function(){
    $("#subcontrols a").click(function(){
	id = $(this).attr("id");
	$(".shower div").hide();
	$(".shower").css("backgroundImage","url("+ $(this).attr('bg')+")");
	$("#shower_"+id.substr(4)).show();
	$(".events li.active").removeClass("active");
	$(this).parent().attr("class","active");
	return false;
    });
});
					    

