﻿$(document).ready(function() {
    $('#portfolio_nav').panelGallery();

    //hover state for navigation items
    $("#nav_list > li").hover(function() {
        $(this).animate({
            margin: "-30px 0px 0px 10px",
            width: "95px",
            height: "99px",
            float: "left"
        });
    });

    //code for mouse leaving navigation items
    $("#nav_list > li").mouseout(function() {
        $(this).animate({
            margin: "0px 0px 0px 10px",
            width: "95px",
            height: "69px",
            float: "left"
        });
    });
});// end document ready function

//redirect function

function NavigateUrl(arg, title) {
    window.open(arg, title, '', '');
}
