// when the DOM is ready...
$(document).ready(function () {
	
	$.ifixpng('images/pixel.gif');
	$('#header h1, #banner li').ifixpng();
	
	$('.submenu').hover(function(){
		$(this).children('a').addClass('active');
		$(this).children('ul').show();
	},function(){
		$(this).children('a').removeClass('active');
		$(this).children('ul').hide();
		Cufon.refresh();
	});

});

