/*
 * jQuery 1.2.6 - Modifocado por Demetrius Cunha • www.webworksbrazil.com
 *
 * Estão incluidos neste JCaroussel e JBlocker que usei dentro do site. 
 *
 * Copyright original (c) 2008 John Resig (jquery.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * $Date: 2008-05-24 14:22:17 -0400 (Sat, 24 May 2008) $
 * $Rev: 5685 $
 */

function cut(){
    var menu_id = $('a').attr('id');
    alert(menu_id + ' :: Cut Function fired from menu_action.js file');
}
function copy(){
    var menu_id = $('a').attr('id');
    alert(menu_id + ' :: Copy Function fired from menu_action.js file');
    
}
function paste(){
    var menu_id = $('a').attr('id');
    alert(menu_id + ' :: Paste Function fired from menu_action.js file');
}
function edit(){
    var menu_id = $('a').attr('id');
    alert(menu_id + ' :: Edit Function fired from menu_action.js file');
}
function del(){
    var menu_id = $('a').attr('id');
    alert(menu_id + ' :: Delete Function fired from menu_action.js file');
}
