$(document).ready(function() {
	$('#ticker_inner').show().marquee('pointer').mouseover(function(){
		$(this).trigger('stop');
	}).mouseout(function(){
		$(this).trigger('start');
	});
	/*
	
	$('#ticker_box').hover(
		function(){
			$('#marquee_ticker').get(0).stop();
		},function(){
			$('#marquee_ticker').get(0).start();
		}
	);
	*/
});



$(document).ready(function(){
	$('input,textarea').focus(function(){$(this).val($(this).attr('title') == $(this).val() ? '' : $(this).val());});
	$('input,textarea').blur(function(){$(this).val($(this).val() == '' ? $(this).attr('title') : $(this).val());});

});