/*
	jquery.thelych.js
	----------
	
	File		:	jquery.thelych
	SuperClass	:	?
	Project		:	---
	Description :	JQuery Extension.
	
	Created by fenrir on 09/03/08.
	Copyright 2008 LPAUDIOLAB. All rights reserved.
    
 */


(function($) {
    /*
        Very Simple PlugIn to allow jQuery to POST JSON...
        Why can't we use POST with JSON ?
        and prevents cache behaviour of the browser...
    */
    $.postJSON = function( url, data, callback ) {
        return jQuery.post(url, data, callback, "json");
    }
})(jQuery);
