﻿/***********************************************************************
* Copyright (c) 2008 George Lopez (george@rgvwebshop.com)
* Requires: jQuery 1.1.3+
***********************************************************************/
function init(id) { 
    $('div#' + id + '_view').hover(
        function() {
            $('div#' + id + '_instructions').css('left', $('div#' + id + '_view').css('left'));
            $('div#' + id + '_instructions').css('top', $('div#' + id + '_view').css('top'));
            $('div#' + id + '_view').css('border', 'solid 1px #cccccc');
            $('div#' + id + '_instructions').show();
        },
        function() {
            $('div#' + id + '_instructions').hide();
            $('div#' + id + '_view').css('border', 'none');
        }
    );
    $('div#' + id + '_view').click(
        function() {
            $(this).hide();
            $('div#' + id + '_edit').show();
            $('div#' + id + '_instructions').hide()
        }
    );
    $('input#' + id + '_btnCancel').click(
        function() {
            $('#content').height('auto');
            $('div#' + id + '_view').show();
            $('div#' + id + '_edit').hide();
            $('div#' + id + '_instructions').hide();
        }
    );
}
