/** JAVASCRIPT CORE FOR SMLITE **/

function smLite( )
{
	this.version = 1;
	this.lightStatus = false;
	this.globalUpdateRate = 10000;
	this.apiURL = 'http://www.source-movies.com/movie/api';
}

smLite.prototype.lightSwitch = function( )
{
	Effect.toggle('lightsout', 'appear', { duration: 0.3 });
	if( this.lightStatus ) {
		$('lightswitch').update( '<a href="#" class="lightOff" onclick="SM.lightSwitch()"></a>' );
		this.lightStatus = false;
	} else {
		$('lightswitch').update( '<a href="#" class="lightOn" onclick="SM.lightSwitch()"></a>' );	
		this.lightStatus = true;
	}	
}

smLite.prototype.viewUpdate = function( ID, div )
{
	new Ajax.Updater( div , this.apiURL + '/get_views/' + ID );
}