$(document).ready(function() {
    $('input[type="text"], textarea').focus(function() {
        if (this.value == this.defaultValue){ 
        	this.value = '';
		}
		if(this.value != this.defaultValue){
	  			this.select();
		}
    });
    $('input[type="text"], textarea').blur(function() {
        if ($.trim(this.value) == ''){
	    	this.value = (this.defaultValue ? this.defaultValue : '');
		}
    });
	
	$('#testimonial_list').cycle({
		fx: 'fade', 
	    speed:'fast', 
    	timeout: 0, 
	    next:'#next', 
	    prev:'#prev' 
	});
	
	$(document).pngFix();
});
