// JavaScript Document

function show(object) {
    if (document.layers && document.layers[object] != null)
        document.layers[object].display = 'block';
    else if (document.all)
        document.all[object].style.display = 'block';
		else if (document.getElementById)
				document.getElementById(object).style.display = 'block';
}
function hide(object) {
    if (document.layers && document.layers[object] != null)
        document.layers[object].display = 'none';
    else if (document.all)
        document.all[object].style.display = 'none';
		else if (document.getElementById)
				document.getElementById(object).style.display = 'none';
}

$(document).ready(function() {
	$(".liveperson-holder a").colorbox({iframe:true, innerWidth:315, innerHeight:300, opacity:0.6, transition:"none", scrolling:false});						 
});
