﻿/* Secret Unlocked */
$(document).ready(function() {

    /* hide all the quotes */
    $("#suLandingHeaderInner > p").hide();

    /* show the first quote */
    $("#p1").show();
    $("#1").addClass("selected");

    $(".quotes > li").mouseover(function() {
        /* find clicked element */
        var elid = $(this).attr("id");
        
        /* remove page loaded defaults */
        $("#suLandingHeaderInner > p").hide();
        $(".quotes > li").removeClass();
            
        $("#p" + elid + "").show();
        $("#" + elid + "").addClass("selected");
    });
}); 