/**************************************************

Description: Wrapper for thumbs

Author:		R. Grave
			remco@trimm.nl

***************************************************/

var wrap = {
	
	init : function() {
		this.thumbs();
	},
	
	thumbs : function() {
	
		var tWidth = 0;
	
		$('.detail_thumb_container a').find('img').each(function() {
			tWidth = tWidth + $(this).outerWidth() + 10;
		});
				
		$('#detail_thumb_wrapper').css({height: '130px'});	
		$('.detail_thumb_container').css({ width: tWidth });
		
	}
};