﻿$j = jQuery.noConflict();


$j(document).ready(function () {

    $j('.slideshow').cycle({
        fx: 'shuffle' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
    });

    //Example gallery (simple)
    $j("#gallery-main a").click(function (e) {

        $j("#gallery-main a").removeClass("current");
        $j(this).addClass("current");
        $j("#gallery-container").html("<img src='" + $j(this).attr("href") + "' alt='" + $j(this).attr("title") + "' />");

        return false;
    });

    $j('#nav-main a').each(function (i) {
        $j(this).html("<span>" + $j(this).html() + "</span>");
    });
    
    



});
