jQuery(document).ready(function() {

    jQuery('.fancybox').fancybox();
    
    jQuery('.fancybox_vid').fancybox({
                'type': 'iframe',
                'width': 500,
				'height': 350});

    jQuery('.rotating_banner').cycle({
		fx: 'fade' 
	});


	jQuery('.home_block, .home_bottom_block, .search_block').click(
		function(){
			if(jQuery(this).find('a').length > 0){
				location.href = jQuery(this).find('a').attr('href');
			}	
		}
	);
	
	
	
	// honeypot captcha
	jQuery('#verify').closest('form').submit(
	
		function(){
			$valid = true;
			
			if(jQuery(this).find('#verify').val() != ''){
				$valid = false;
			}
			
			return $valid;
		}
	
	);
	
	jQuery('form.validate').validate();
	
	
	
	
	
	jQuery('#selected_state').each(function(){
		$state = jQuery('#selected_state').val();
		jQuery('#state_select option[value|="' + $state + '"]').attr('selected', 'selected')
	});

	jQuery('#state_select').change(function(){
		$section = jQuery('#section').val();
		window.location = BASE + $section + '/state/' + jQuery('#state_select').val();
	});



	jQuery('#file').change(
		function(){
			jQuery('.fakefile .text').val(jQuery('#file').val());
		}
	);

	
	
});


