$(window).load(function(){
	
	$('input[type=text]').focusin(function(i){
		($(this).attr('value') == $(this).attr('title')) ? $(this).attr('value', '') : '';
	});
	
	$('input[type=text]').focusout(function(i){
		($(this).attr('value') == '') ? $(this).attr('value', $(this).attr('title')) : '';
	});
	
	
	$('.bannerz').each(function(){
		$(this).Scrolla(3000);
	});
	
});
