
function initPreviewButton() {
	$('#preview').bind('click', function (e) {
		var tags = "";
		$('.tagList').children('input[type=hidden]').each(function(index) {
			tags = $(this).val() + "," + tags;
		});
		window.open(previewUrl+tags);
		return false;
	});
}

jQuery(document).ready(function($) {
	try {
		initPreviewButton();
	} catch (err) {
		// if(window.console) { window.console.log(err) }
		return false;
	}
});

