// JavaScript Document

/* Simple Image Swap - d.lantz */
$(function() {
    $('.rollover').hover(function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    }, function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    });
});

/* MODAL WINDOW v1.1: Andrew Sauder, andrewsauder@gmail.com, 240.321.9009 */
function openModal(data)
{
	$('#modalData').html('<center><img src="public_images/loader.gif" alt="loading..." title="loading..." style="margin-top: 40%;" /></center>');
	$('#modalWindow').show();
	$('#modalBK').fadeTo('slow',.75);
}
function closeModal()
{
	$('#modalWindow').fadeOut();
	$('#modalBK').fadeOut();
	$('#modalData').html('');
}
function updateModal(id)
{
	$.post("ajax/ajax.photos.php",{ id:id },function(data) { $('#modalData').html(data); })
}
function photoChange(id, action)
{
	$.post("ajax/ajax.photos.php",{ id:id, action:action },function(data) { $('#modalData').html(data); })
}


