$(document).ready(function(){
	

	$('#slider-holder ul').jcarousel({
		wrap: 'circular',
		scroll: 1,
		auto: 5,
		visible: 1
		
	});
	
	/* END JCAROUSEL */
	
	
	/* Field Focus */
	
	$('.field').focus(function(){
		if( $(this).attr('title') == $(this).val() ) {
			$(this).val('');
		}
	}).blur(function(){
		if( $(this).val() == '' ) {
			$(this).val( $(this).attr('title') );
		}
	});
	
	/* End Field Focus */
	
	
});	
