$(document).ready(function() {
	//superFish
	$('ul.sf-menu').superfish({
		pathLevels: 2,
		delay: 800,
		animation: {height: 'show'},
		speed: "fast"
	});

	//misc
	$('#cust_email').focus(function(){
		var emailAddr = $(this).val();
		if (emailAddr == 'you@yourhost.com') $(this).val('');
	});
	$('#cust_email').blur(function(){
		if ($(this).val() == '') {
			$(this).val('you@yourhost.com');
		}
	});

	$('img[src$=.png]').ifixpng();
});
