/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$(document).ready(function()
{

	// W3C compliant external links
	$("#capsule a[rel$='external']").attr("target", "_blank");


	$("#form-demo-one").validate(
	{
		errorElement: "div",
		wrapper: "div"
	});

	$("#form-demo-two").validate(
	{
		errorElement: "div",
		wrapper: "div"
	});

});

