$(document).ready(function() {
	$('img[@src$=.png]').ifixpng();
	$('#nav li:first').css("border-top", "1px solid #ffffcc");
	var alt;
	$('img').hover(
		function() {
			alt = $(this).attr('alt');
			$(this).attr('alt', '');
			$(this).attr('title', '');
		},
		function() {
			$(this).attr('alt', alt);
			$(this).attr('title', alt);
		}
	);
	$('a').hover(
		function() {
			alt = $(this).attr('title');
			$(this).attr('title', '');
		},
		function() {
			$(this).attr('title', alt);
		}
	);
});