$(function() {

    $('.help').live('click',function() {
        var dialogId = "#" + $(this).attr('rel');
        $(dialogId).dialog({
           width: 650,
           resizable: false,
           close: function() { $(this).dialog( 'destroy' );}
	    });
		return false;
	});

    $('#thumbnails a').click(function(){
        $("#regularImage").attr('src', $(this).attr('href'));
        $('#imageLink1').attr('href', $(this).attr('rel'));
        $('#imageLink2').attr('href', $(this).attr('rel'));
        return false;
    });

});


