//*******************************************
// jQuery
//*******************************************
$(function(){

    // Tooltip-------------------------------

    var offset = 5;

    $('#tutorials').stop().hover(function(evt){
        $('<div id="tutorials-text">Coming Soon</div>').addClass('tooltip').css('top',evt.pageY+offset - 45).css('left', evt.pageX+offset).appendTo('body').hide().fadeIn(200);
    }, function(){
        $('#tutorials-text').remove();
    });

    $('#tutorials').mousemove(function(evt){
        $('#tutorials-text').css('top',evt.pageY + offset - 45).css('left',evt.pageX + offset);
    });

    // Image Tooltip-------------------------

    $('#table-resume .content img').stop().hover(function(evt){
        $('<div id="image-tooltip"><b>'+$(this).attr("alt")+'</b><br/><span class="tny-text">&copy; 2006 - 2009 '+$(this).attr("id")+' &trade; - All Rights Reserved</span><br/><br/>Technologies: '+$(this).attr("longdesc")+'<br/><br/><span class="tny-text">Click to Enlarge</span></div>').addClass('image-tooltip').css('top',evt.pageY+offset).css('left', evt.pageX+offset+10).appendTo('body').hide().fadeIn(200);
    }, function(){
        $('#image-tooltip').remove();
    });

    $('#table-resume .content img').mousemove(function(evt){
        $('#image-tooltip').css('top',evt.pageY + offset).css('left',evt.pageX + offset+10);
    });
    
    // Image Preview-------------------------
    
    $("#table-resume .content img").click(function(){
        window.location = "gallery.php?pid="+$(this).attr("src").substring(31, 33);
    });



});



