/* ===============================================
Slide Menu for index
=============================================== */
function SlideFlow(tag){
	$(tag).each(function(){
		$(this).css('cursor','pointer');
		$(this).hover(function(){
			if(!$(this).hasClass('activ')){
				$(this).attr("src",$(this).attr("src").replace(".gif","_on.gif"));
			}
		},function(){
			if(!$(this).hasClass('activ')){
				$(this).attr("src",$(this).attr("src").replace("_on.gif",".gif"));
			}
		});
		
		$(this).toggle(function(){
			$(this).parent().next().slideDown();
			$(this).addClass("activ");
			$(this).attr("src",$(this).attr("src").replace("_on.gif",".gif"));
			$(this).attr("src",$(this).attr("src").replace(".gif","_active.gif"));
			$("p.pagetop").animate({ opacity: 0 });
		},function(){
			$(this).parent().next().slideUp();
			$(this).removeClass("activ");
			//$(this).attr("src",$(this).attr("src").replace(".gif","_on.gif"));
			$(this).attr("src",$(this).attr("src").replace("_active.gif",".gif"));
			$("p.pagetop").animate({ opacity: 1.0 });
		});
	});
}


