/***************************************************
	Quick Foundation
	Written by: Richard Chiriboga
	For: THAT Agency, LLC.
	Website: www.thatagency.com
	
	
***************************************************/

// BEGIN DOM
$(function(){
	
	// Any External Link will open up a new window.
	$('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
	
	// Will handle any PDF to open up without sending you to a new page	
	$("a[href*=.pdf]").click(function()	{
		$(this).attr({"target":"_self"});
		return false;
	});
	
	
	// This will show the JS Confirm Delete using the rel="confirmdelete"
	$('a[rel="confirmDelete"]').click(confirmTheClick); 

}); // END DOM
	
// Confirm the click. Just a quick check
function confirmTheClick()
{
	var agree="Are you sure you wish to perform this action?";
	if ( confirm( agree ) )
		return true;
	else
		return false;
}








