$(function(){
	var panels = $('#gallery .panel');
	var filmstrips = $('#gallery .filmstrip');
	$('#gallery').empty().addClass('galleryview');
	panels.each(function (index){
		$('<div class="panel">' + $(this).html() + '</div>').appendTo('#gallery');
	});
	$('<ul class="filmstrip"></ul>').appendTo('#gallery');
	filmstrips.each(function (index){
		$('<li>' + $(this).html() + '</li>').appendTo('#gallery .filmstrip');
	});
});
