jQuery(document).ready(function($) {
		
	$('.colorbox').colorbox({scalePhotos:true, maxWidth:"90%", maxHeight:"90%", transition:"elastic", slideshow:"true", slideshowSpeed:4000, opacity:0.8});
	
	$('.box ul:not(#gform_fields_2)').hide();
	$('.box h2').toggle(function () {
        	$(this).addClass("down");
        	$(this).next('ul').slideDown(400);
		},function () {
        	$(this).removeClass("down");
        	$(this).next('ul').slideUp(400);
	});
      
	$('.details').hide();
	$('p.more').click(function () {
        $(this).next('div').slideToggle(400);
		return false;
	});
	
	$('input[type="text"], textarea').focus(function() {  
		$(this).removeClass("idleField").addClass("focusField");  
		if (this.value == this.defaultValue){  
			this.value = '';  
		}  

		if(this.value != this.defaultValue){  
			this.select();  
		}  
	});  

	$('input[type="text"], textarea').blur(function() {  
		$(this).removeClass("focusField").addClass("idleField");  
		if (this.value == ''){  
			this.value = this.defaultValue;  
		}
	});

	$("#ad_cycle").cycle({
		fx: 'fade',
		cleartype: 0,
		speed: 900,
		timeout: 8000
	});
	
});
    
	
	
	

