$(document).ready(function() {
    // hides the photobox as soon as the DOM is ready (a little sooner that page load)
    $('#photobox').hide();

    // shows and hides and toggles the photobox on click  
    $('#slick-show').click(function() {
        $('#photobox').show('slow');
        return false;
    });
    $('#slick-hide').click(function() {
        $('#photobox').hide('fast');
        return false;
    });

    //lenox
    var photoIsVisible = false;
    var photoCookieName = 'viewphoto';
	document.getElementById("details").style.backgroundImage="url('http://www.benolds.com/image/opengallery.png')";
    $('#slick-toggle').click(function() {
        photoIsVisible = !photoIsVisible;
        if (photoIsVisible) {
            $.cookie(photoCookieName, '1');
			document.getElementById("details").style.backgroundImage="url('http://www.benolds.com/image/closegallery.png')";
        }
        else {
            $.cookie(photoCookieName, null);
			document.getElementById("details").style.backgroundImage="url('http://www.benolds.com/image/opengallery.png')";
        }
        $('#photobox').toggle(400);
        return false;
    });

    //lenox
    //check cookie here once for on load
    if ($.cookie(photoCookieName) == '1'){
        photoIsVisible = !photoIsVisible;
        $('#photobox').toggle(400);
		document.getElementById("details").style.backgroundImage="url('http://www.benolds.com/image/closegallery.png')";
    }

    // slides down, up, and toggle the photobox on click    
    $('#slick-down').click(function() {
        $('#photobox').slideDown('slow');
        return false;
    });
    $('#slick-up').click(function() {
        $('#photobox').slideUp('fast');
        return false;
    });
    $('#slick-slidetoggle').click(function() {
        $('#photobox').slideToggle(400);
        return false;
    });
});