$(document).ready(function(){
	$(".toggled").hide();
	$(".toggle_parent").hover(
		function(){
			$(this).find(".toggled").slideDown("fast");
			$(this).siblings(".toggle_parent").find(".toggle span").css("background-position","top left");
		},
		function(){
			$(this).find(".toggled").slideUp("fast");
			$(this).siblings(".toggle_parent").find(".toggle span").removeAttr("style");
		}
	);
});

