// JavaScript Document

$(function() {
		   
		$("#GalleryContainer").BUDeGALLERY({interval:galleryRotationInterval, galleryWidth:934, animate:'fade', onBuildComplete:afterBuild, playlistDiv:'#GalleryPlaylist'});  
});


function afterBuild() {
	pw = 0;
	$('.budegallery_playlist_item').each(function(){
			pw += $(this).width();	
			margin = $(this).css('margin-left');
			spl = margin.split('px');
			pw += parseInt(spl[0]);
		});
	$('.budegallery_playlist').css('width', pw);
}
