



jQuery(document).ready(function(){
	
	////
	// add '_blank' to external links
	//
		$('a[href^="http://"]:not([href*="'+location.hostname+'"])').each(function() {
		var orgTitle = $(this).attr("title");
		 $(this).attr({target: "_blank", title: orgTitle+" [new window]"});
		 $(this).append('<span class="out">^</span>');
		 });
			////	// expand/hide left nav	//	$('#productnav .head').click(function() {
		$(this).toggleClass("expandfocus");
		$(this).next('ul').slideToggle('slow');
		return false;
	}).next('ul').hide();	
	
	////
	// form validation
	//
		$("#sunshineenquiry").validate({
		  rules: {
		    firstname: {
		      required: true,
		      minlength: 2,
		      maxlength: 40
		    },
		    lastname: {
		      required: true,
		      minlength: 2,
		      maxlength: 40
		    },
		    country: {
		      required: true,
		      minlength: 2,
		      maxlength: 60
		    },
		    email: {
		      required: true,
		      email:true
		    },
		    comments: {
		      required: true,
		      minlength: 10
		    }
	
		  }
		});
	
	
});


