$(document).ready(function(){
	$('.pngFix').pngFix();
	
	// fancybox
	// $('a[rel^="lightbox"]').each(function(){
	// 	$(this).attr("rel", "fbgroup");
	// 	$(this).attr("title", "");
	// }).fancybox();
	
    $.swapImage(".swapImage");

	var errors = "";
	$(".ce_form .error").each(function(){
		errors += $(this).html()+"<br />";
		//$(this).html("");
	});
	$(".ce_form > .errors").html(errors)
});

