function openChatBox(){
	$('#chatbox').slideToggle('slow');
	createCookie('chatBoxStatus','sleeping',1); // Make chatbox sleep for at least 1 minute before giving it a chance to open again
	
	// Close click
	$('#chatbox .chatbox-minimize').click(function(){
		$('#chatbox').slideToggle('fast');
		return false;
	});
	
	// Minimize click - makes chatbox go away until next browser session
	$('#chatbox .chatbox-close').click(function(){
		$('#chatbox').slideToggle('fast');
		createCookie('chatBoxStatus','closed');
		return false;
	});
}

$(document).ready(function(){
	$('body').append('<div id="chatbox"><ul class="chatbox-menubar"><li><a href="#" class="chatbox-minimize chatbox-menuicon; hovw"><span>X</span></a>&nbsp;&nbsp;</li></ul><div class="chatbox-content"><h2>Need help?</h2><p class="greytxt">Our sales team are standing by, ready <br>to help you.</p><p><a class="hovn2" href="#" onclick=\'lpButtonCTTUrl = "http://server.iad.liveperson.net/hc/39939003/?cmd=file&amp;file=visitorWantsToChat&amp;site=39939003&amp;imageUrl=http://www.backboneconnect.com/themes/default/global&amp;referrer="+escape(document.location); lpButtonCTTUrl = (typeof(lpAppendVisitorCookies) != "undefined" ? lpAppendVisitorCookies(lpButtonCTTUrl) : lpButtonCTTUrl); window.open(lpButtonCTTUrl,"chat39939003","width=475,height=400,resizable=yes"); logOCSale("itemcount=1|itemvalue=0.00|isconv=1|pover=Chat with support now|m1=Sale Type Chat"); return false;\' class="chatbox-button primary_cta"><span>Click here to chat</span></a></p></div></div>');
	// Check whether or not chatbox should be hidden
	if(readCookie('chatBoxStatus') != 'sleeping' && readCookie('chatBoxStatus') != 'closed') {
		var chatBoxTimer = setTimeout('openChatBox()',7000); // Open chatbox after 7 seconds on the page
	}
})

