$(document).ready(function() {
    $("#logo a").hover(function() {
                    $(this).stop().fadeTo(300, 0.4);
                 },function() {
                    $(this).stop().fadeTo(500, 1);
    });
    $("#clientlist li").hover(function(){
                    $(this).stop().fadeTo(300, 0.4);
                 },function(){
                    $(this).stop().fadeTo(500, 1);
    });
    $("#past_logos a").hover(function(){
                    $(this).stop().fadeTo(200, 0.3);
                 },function(){
                    $(this).stop().fadeTo(500, 1);
    });

    // $('#test').innerfade({ speed: 500, timeout: 5000, type: 'sequence', containerheight: '500px' });
    // $("div#clientgallery").slideView({easeTime: 400});

    $("#myController").jFlow({
		slides: "#mySlides",
		controller: ".jFlowControl", // must be class, use . sign
		slideWrapper : "#jFlowSlide", // must be id, use # sign
		selectedWrapper: "jFlowSelected",  // just pure text, no sign
        easing: "easeOutQuad",
		width: "594px",
		height: "500px",
		duration: 300,
        prev: ".jFlowPrev", // must be class, use . sign
        next: ".jFlowNext"  // must be class, use . sign
	});

    $("#rightcol li:first").addClass("redbullet");
    $("#caplist li:first").removeClass("redbullet");
});

$(function(){
    $('.tip').tooltip({
        track: true,
        delay: 0,
        showBody: " - ",
        left: -80,
        top: 24
    });
});