﻿// JScript File

$(document).ready(function() {

    //center the wrapper div
    $('#wrapper').centerDiv();

    //handle the resize event
    $(window).resize(function() {
        $('#wrapper').centerDiv();
    });

    //handler for the mouseover (hover) event of any element with the class 'fademouseover'
    $('.fademouseover').each(function() {
        $(this).fadeOnMouseOver(0.5, 1.0, "fast");
    });

    //handler for the onClick event of any anchor which has the class 'thumbnail' set.
    $('a.thumbnail').each(function() {
        $(this).setImageOnClick();
    });

});

    function confirmDelete(profileTitle) {
        return confirm("Are you sure you want to delete the profile '" + profileTitle + "'.");
    };