$(function() {
	$('#quick_links_btn').click(function(){
		$('#quick_links_menu_wrapper').css({display: 'block', opacity: 0.0}).animate({opacity: 1.0}, 500);
		return false;
	});
	$('#quick_links_menu_close').click(function(){
		$('#quick_links_menu_wrapper').css({display: 'none'});
		return false;
	}); 

    $("a[rel]").overlay();
        
});

function add_slashes(str) {
    str=str.replace(/\\/g,'\\\\');
    str=str.replace(/\'/g,'\\\'');
    str=str.replace(/\"/g,'\\"');
    str=str.replace(/\0/g,'\\0');
    return str;
}
function strip_slashes(str) {
    str=str.replace(/\\'/g,'\'');
    str=str.replace(/\\"/g,'"');
    str=str.replace(/\\0/g,'\0');
    str=str.replace(/\\\\/g,'\\');
    return str;
}

