/* Contains javascript code to be used in stileevents pages. */

$(document).ready(function() {
	
	// Toggles details divs. Uses the rel attribute of the clicke element in order to know which div to toggle
	$("#index .more").click(function(){
		// hide all
		$(".colDetails").hide("slow");
		
		// show selected
		var detDivId = $(this).attr("rel");
		$("#" + detDivId).show("slow");
		return false;
	});

}); 


