
$(function() {
    $('#slideshow').cycle({
        fx:     'scrollHorz',
        prev:    '.prev',
        next:    '.next',
		timeout: 0,
        pager:  '#menu ul',
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '#menu ul li:eq(' + (idx) + ') a';
        }
    });
});



/*$(document).ready(function(){

	$("#menu a").append("<span></span>");
	
	$("#menu a").hover(function() {
		$(this).find("span").animate({opacity: "show", top: "30"}, "slow");
		var hoverText = $(this).attr("id");
	    $(this).find("span").text(hoverText);
	}, function() {
		$(this).find("span").animate({opacity: "hide", top: "60"}, "fast");
	});

$(".lix a").removeAttr("title");
});
*/

$(document).ready(function(){

	$(".btn-slide").click(function(){
		$("#panel").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});
	
	
	 
});






