$(document).ready(function(){
	$('#text_slides').cycle({
		fx: 'scrollHorz',
		timeout: 0,
		speed: 1000,
		next:'#next',
		prev:'#prev'
	});
	$('#image_slides').cycle({
		fx: 'fade',
		timeout: 0,
		speed: 1000,
		next:'#next',
		prev:'#prev'
	});
});

function _hint(obj,target_value,onblur){
	if(obj.value == target_value){
		obj.value = '';	
	}
	
	if(onblur == 1 && $.trim(obj.value) == ''){
		obj.value = target_value;
	}
}
