//jQuery 1.4.2
$(document).ready(function() {

	if( $(".chat_box").length > 0 ) { chatbox() };
	
});

//fade in liveleader chat box
function chatbox() {
	//Box is first hidden in CSS to prevent it from popping in once its seperate script loads
	$(".chat_box").delay(800).fadeIn(1500);
}
