
$(document).ready(function(){

	// global

		$("a[href^='http']").attr('target','_blank');

	// contact
		
		$('#contact-form input[name="name"]').each(function(){
			
			if ($(this).val() == ''){
				
				$(this).val('Name');
			}
		});

		$('#contact-form input[name="name"]').focus(function(){
			
			if ($(this).val() == 'Name'){
				
				$(this).val('');
			}	
		});

		$('#contact-form input[name="email"]').each(function(){
			
			if ($(this).val() == ''){
				
				$(this).val('Email');
			}
		});

		$('#contact-form input[name="email"]').focus(function(){
			
			if ($(this).val() == 'Email'){
				
				$(this).val('');
			}	
		});

		$('#contact-form textarea[name="comments"]').each(function(){
			
			if ($(this).val() == ''){
				
				$(this).val('Message');
			}
		});

		$('#contact-form textarea[name="comments"]').focus(function(){
			
			if ($(this).val() == 'Message'){
				
				$(this).val('');
			}	
		});

	// home

		if ($('#image-slider').length){

			$('#image-slider').cycle({ 

				fx:     'fade', 
				speed:  900, 
				timeout: 6000, 
				next:   '.image-next', 
				prev:   '.image-prev' 
			});
		}
});
