$(document).ready(function() {

// img alt fix
	$('img').each(function(){
	if (!$(this).attr('alt')) { $(this).attr('alt',""); }
});

// skipnav
/* 	$('a').click(function(){
		if (($(this).attr('href').substr(0,4) != "http") && ($(window).scrollTop() > ($('#menu').position().top) - 100) && ($(this).parent().parent().attr('id') != 'bar')) {
			var href = $(this).attr('href') + '#skipnav';
			$(this).attr('href',href);
		}
	}); */
// png fix
	if ($.browser.msie) {
		$(this).find("img[src$='.png']").css('behavior','url(img/iepngfix.htc)');
	}
});


