(function($){
	// jQuery code here

	// Confirm Popup on Links
	$(".confirm").click(function() {
		message = $(this).attr("data-confirm");
		if(message == undefined) message = "Are you sure you want to do this?";
		return confirm(message);
	});

})(window.jQuery);



window.log = function(){
  log.history = log.history || [];
  log.history.push(arguments);
  if(this.console){
    console.log( Array.prototype.slice.call(arguments) );
  }
};

jQuery.fn.exists = function(){return jQuery(this).length>0;} // Usage: if($(".element").exists()) { /* do something */ }
