// DOM
	$(document).ready(function(){
		
		
// Pre-Load CSS
	$.preloadCssImages();
		
		jQuery.fn.outer = function() { 
		  return $( $('<div></div>').html(this.clone()) ).html(); 
		} 
		
// News Horizontal Scroller
	$(function() {
	// initialize scrollable
	$("div.scrollable").scrollable({ 
    	size: 1,
		easing: 'easeInOutQuad'
	});
});

// End
});

