$(document).ready(function() {
							   
	
		var animation="over";		
		
		$('.slideshow').cycle({
			fx: 'fade',
			timeout: 6000,
			speed: 2000
		});
	
		//$(".accordion").accordion({ autoHeight: false, navigation: true  });
		$(".suba").click(function() {
	 		if($(this).parent().hasClass("up")) {
			  $(this).parent().parent().children("li").children("ul").slideUp();
			  $(this).parent().parent().children("li").addClass("up");
			  $(this).parent().children("ul").slideDown();
			  $(this).parent().addClass("down");
			  $(this).parent().removeClass("up");
			} else {
				$(this).parent().children("ul").slideUp();
				$(this).parent().addClass("up");
				$(this).parent().removeClass("down");
				}
			});
		$(".active").children("ul").show();

    });

