/***************************/
//@Author: Adrian "yEnS" Mato Gondelle & Ivan Guardado Castro
//@website: www.yensdesign.com
//@email: yensamg@gmail.com
//@license: Feel free to use it, but keep this credits please!					
/***************************/

// jQuery object
jQuery.first = function(message){
	alert(message);
}
// jQuery.fn object
jQuery.fn.first = function(message){
	this.each(function(){
		alert(message + " " + this.id);
	});
}
