$(document).ready(function(){
	
	//Enable external links
	$('a[href^="http://"],a[href^="https://"]').attr('target','_blank');
	
	//Setup form field with default value
	function setFieldValue(id,value){
		$('#'+id).val(value).focus(function(){
			if( $(this).val() == value)
				$(this).val('');
		}).blur(function(){
			if( $(this).val() == '')
				$(this).val(value);
		});
	}
	
    $('#coda-slider-1').codaSlider({autoHeight:true});
    
    $('#testimonials').cycle({timeout:7000});

});
