jQuery(document).ready( function($){

	/* =JQuery Cycle Slideshow.
	================================================== */
	if ( $('#slideshow').length >= 1 ){
		
		$('#slideshow').cycle({
			fx: 'fade',
			speed: 'slow',
			timeout: 5000,
			pager:  '#slide-nav',
			slideExpr: 'div.slide'
		});
	
	}

	jQuery(".popup").colorbox({width:"600px", height:"400px", iframe:true});
	
	// Tab Widget
	jQuery(".tabs").tabs({ 
		fx: { opacity: 'toggle' } 
	});


  // Map 1
  if ( $('#mapp0').length ){
    //$("#mapp0_overlay-links > a").click(function(){
    console.log('wer');
    $("#mapp0_directions").show();
           var field = jQuery("#mapp0_daddr");
           
           if ( field.attr('value') == '' ) {
                   field.attr('value', '705 N Lindsay Rd, Mesa, AZ 85213, USA');
           }
    //});
  }



	/* Input Value */
	$('input').each(function() {
    var default_value = this.value;
    if( $(this).is('.button') || $(this).is('#submit') ){
    	// Do Nothing
    }else{
      $(this).focus(function() {
          if(this.value == default_value) {
              this.value = '';
          }
      });
      $(this).blur(function() {
          if(this.value == '') {
              this.value = default_value;
          }
      });
		}
  });

	/* Textarea Value */
	$('textarea').each(function() {
  	var default_value = this.value;
  	$(this).focus(function() {
  		if(this.value == default_value) {
                  this.value = '';
           }
  	});
  	$(this).blur(function() {
  		if(this.value == '') {
  			this.value = default_value;
  		}
  	});
  });

});
