/*
SeeSpotRunOn21.com JS Code
*/
$('#slideShow').cycle({ 
	fx:    'fade',
	speed:  4000 
});

Shadowbox.init({
    // let's skip the automatic setup because we don't have any
    // properly configured link elements on the page
    //skipSetup: true
});

/*
window.onload = function() {
    // open a welcome message as soon as the window loads
    
};
*/

showDogPopup = function(dogId) {
	dog = dogInformation[dogId];
	Shadowbox.open({
        content:    '<div id="welcome-msg">Welcome to my website!</div>',
        player:     "html",
        title:      dog.name,
        height:     500,
        width:      700
    });
}