/* For LivePerson Button */
$(document).ready(function() {
	var linkName = $('a#chatButton img').attr('src');
	
	if(linkName == 'http://www.gadabout.com/images_liveperson/reponline.gif') {
		$('a#chatButton').hover(
			function() {
				$('a#chatButton img').attr('src','../images_liveperson/reponline_ro.gif');		
			},
			function() {
				$('a#chatButton img').attr('src','../images_liveperson/reponline.gif');	
			}
		)
	};
});