(function( $ ) {

	$(document).ready(function () {
		
		$(".wpopup .wclose").click(function (event) {
			
			$(this).closest(".wpopup").animate({opacity: 0.05}, function () { $(this).css({display: "none"}); })
		})
		
		if ($(".wpopup").length > 0)
			$(".wpopup").center({position: "absolute"});
		
	})
})( jQuery );
