
$(document).ready(function() {

$(function() {
  $("#mainmenu a").hover(function() {
    $(this).addClass("selected");
  }, function() {
    $(this).removeClass("selected");
  });
});

$("a[rel^='prettyPhoto']").prettyPhoto({
	animationSpeed: 'slow', /* fast/slow/normal */
	padding: 24, /* padding for each side of the picture */
	opacity: 0.75, /* Value betwee 0 and 1 */
	showTitle: true, /* true/false */
	allowresize: false /* true/false */
});

	$.ifixpng('/gfx/pixel.gif');
 	$('img[@src$=.png]').ifixpng();

});


