$(function(){$("a[rel$='external']").click(function(){this.target = "_blank";});});

$(document).ready(function() {
	$('h3.top').corner("top");
	$('h3.bottom').corner("bottom");

	if ($('#recherche').length == 0) {
		$(document).ready(function() {
			$.cookie('recherche', '', { path: '/', expires: -1 });
		});
	}

	if ($('#form-recherche-submit').length != 0) {
		$('#form-recherche-submit').click(function() {
			$.cookie('recherche', $("#keywords").val(), { path: '/', expires: 2 });
			form.submit();
		});
	}

	if ( $("#subForm2") ) {
		$("#subForm2").validate({
				rules: {
					lastname: { required: true},
					firstname: { required: true },
					postalcode: { required: true }
				},
				messages: {
					lastname: { required: "champ obligatoire" },
					firstname: { required: "champ obligatoire" },
					postalcode: { required: "champ obligatoire" }
				}
		});
	}

/*
 $(function(){

  settings = {
          tl: { radius: 10 },
          tr: { radius: 10 },
		  bl: { radius: 0 },
          br: { radius: 0 }
      }

  $('h3.top').corner(settings);

  });
*/

});

