$(document).ready(function () {
 	/**
 	* Homepage slider
 	*/
 	



 
var screens = $("#computer .screen"),
    	sc_flipScreen = function (index) {
        	$(screens).fadeOut();
        	$(screens[index]).fadeIn();




      	}




      	sc_parseTwitterDate = function (text) {
        	var newtext = text.replace(/(\+\S+) (.*)/, '$2 $1'),
        	date = new Date(Date.parse(newtext)).toJSON();
        	date = date.substring(0, date.length - 5);
        	date = date + "Z";
        	return date; 
      	};
    






$(screens[0]).fadeIn();
    // initialize scrollable
    $(".scrollable").scrollable({
    	circular: true,
	onSeek: function (event, index) {
        sc_flipScreen(index);
    }




  })
.autoscroll({ autoplay: true, interval: 11000 }).navigator({
    	navi: '#mantle-dots',
     	naviItem: 'li'
      });

});
// woo closure
// z.g.s. 2011 a.d.
