$(document).ready(function(){
	var tlSize = 0; 
	$("#featured-exhibition img").each( 
	function(i){ 
		var elSize = $(this).width(); 
		tlSize += elSize + 120; 
	});
	//alert(tlSize); 
	$("#featured-exhibition").css("width", tlSize - 2250);
});