﻿/* licuit.com */
/* licuitcore.js */
/* Created Oct, 2009 */
/* Modified Oct, 2009
--------------------------------------- */

var licuitCore = {};

licuitCore.licuit = new Class({
        Implements: [Options, Events],
		
		ie : (navigator.userAgent).indexOf('MSIE'),
		ie6 : ( (navigator.appVersion).indexOf('6.0') > 0 && (navigator.userAgent).indexOf('MSIE') > 0 ),
		ie7 : ( (navigator.appVersion).indexOf('7.0') > 0 && (navigator.userAgent).indexOf('MSIE') > 0 ),
		
		initialize: function(options){
			
        }
		
    });
