
$.ifixpng('img/pixel.gif');
$('img[@src$=.png]').ifixpng();
$('.pngfix').ifixpng();
$('#project-bar a').ifixpng();

$(document).ready(function() {

	if ($('#projects').length > 0) {
		$('#projects a.img').mouseover(function(){
			$(this).children('.trame').attr({
				src: baseUrl+'/img/pixel.gif'
			});
		}).mouseout(function(){
			$(this).children('.trame').attr({
				src: baseUrl+'/img/projects/project-img-trame.png'
			});
			$('.trame').ifixpng();
		});
	}
	
});
