$(document).ready(function() {
	function show_live_helper(){
		$(this).animate({width:265}, 500)
	}
	function hide_live_helper(){
		$(this).animate({width:20}, 500)
	}
	$("#live_helper").hoverIntent(show_live_helper,hide_live_helper)
});


