// Add a class of js to the html tag
$('html').addClass('js');

// do stuff after document loads
$(document).ready(function() {
// Add classes to links and open some in new windows
	$('a[href*=pdf]').addClass('pdf').click( function() {
		window.open(this.href);
		return false;
	});
	$('a[href*=doc], a[href*=docx]').addClass('doc');
	// Open links beginning with http in new window
	
});
