/************************************************************************************************
Click!
Desarrollos Multimedia
www.clickmultimedia.net
2010
************************************************************************************************/

$(document).ready( function () {
	$("ul.subMenu:not('.open_at_load')").hide();

	$("li.toggleSubMenu span").each( function () {
		var TexteSpan = $(this).text();
		$(this).replaceWith('<a href="" title="' + TexteSpan + '">' + TexteSpan + '</a>') ;
	} ) ;

	$("li.toggleSubMenu > a").click( function () {

		if ($(this).next("ul.subMenu:visible").length != 0) {
			$(this).next("ul.subMenu").slideUp("normal", function () { $(this).parent().removeClass("open") } );
		}
		else {
			$("ul.subMenu").slideUp("normal", function () { $(this).parent().removeClass("open") } );
			$(this).next("ul.subMenu").slideDown("normal", function () { $(this).parent().addClass("open") } );
		}

		return false;
	});

} ) ;

