// JavaScript Document
jQuery(document).ready(function($){
	
	// Select the text within input boxes on focus
    $('input[type=text], input[type=email], input[type=tel]').focus(function() {
		$(this).select();
	});
	$('textarea').focus(function() {
		if (this.value == this.defaultValue) {
        this.select();

    	}

	});
	
	$('.image-thumbs a').click(function() {
		var image = $(this).html();
		image = $(image).attr('src');
		$('.feat-image').html("<img src='" + image + "' alt='' width='621' height='400'>");
		return false;
		
	});
	
	// Remove border from last menu item
	$('.top-nav li:last-child').css('border-right', 'none');
	
});
