function autoFillFromTitle( jqueryselector ){

	$( jqueryselector ).each(function(i){
		$(this)
		.focus(function(){
			if($(this).val()==$(this).attr("title")){
				$(this).removeClass("autofilled").val("");
			}
		})
		.blur(function(){
			if( $(this).val()=="" || $(this).val() == $(this).attr("title") ){
				$(this).addClass("autofilled").val($(this).attr("title"));
			}
		});
		
		$(this).blur();
	
	});

}

$(document).ready(function(){
	autoFillFromTitle(".onpage_input_main input[type='text']");

	$(".onpage_form").submit(function(){
		$("input", this).each(function(i){
			if($(this).val()==$(this).attr("title")){
				$(this).val("");
			}
		});
	});

	$('form.onpage_form .captcha').click(function(){
		$(this).stop().css( 'opacity', 0.0 ).css( 'background-image', 'url(' + document.base_url+'securimage/securimage_show.php?sid=' + Math.random() + ')' ).animate({opacity: 1.0}, 400);
	}).css( 'cursor', 'pointer' );
	
});

