// when the DOM is ready...
$(document).ready(function () {
	
	// $.ifixpng('images/pixel.gif');
	$('#header h1 a, .ico-block img, p.control a, #main-banner #texts a.badge-join-free, #main-banner #image, #main-banner #texts .buttons a ').ifixpng();
	$('.centered').vAlign();

});
(function ($) {
// VERTICALLY ALIGN FUNCTION
$.fn.vAlign = function() {
	return this.each(function(i){
	var ah = $(this).height();
	var ph = $(this).parent().height();
	var mh = (ph - ah) / 2;
	$(this).css('margin-top', mh);
	});
};
})(jQuery);
