// remap jQuery to $
(function($){
	
	// Copyright script - found in the plugins.js file
	// To use, replace the '#copyright' id with the
	// id of the element that holds your copyright date
	$('#copyright').copyright();
	
	// Email defuscator - found in the plugins.js file
	$('.email').defuscate();
	
	
	$(".clickable").click(function(){
     window.location=$(this).find("a").attr("href");
     return false;
});
	
	// User defined functions go here
	
})(this.jQuery);
