jQuery(document).ready(function () {

	jQuery('img[@src$=.png]').ifixpng(); 

	jQuery(".photo").hide();	
	jQuery(".photo").fadeIn("slow");
	jQuery("#logo_hover").hide();
	jQuery("#logo").hoverIntent(
		function () {
	  		jQuery("#logo_hover").fadeIn("slow");
      }, 
      function () {
        jQuery("#logo_hover").fadeOut("slow");
      }
	);
	
//jQuery.sifr({path:'wp-content/themes/bystra/js/'});
	
//jQuery('h2').sifr({ font: 'itc_century'});
//jQuery('h2').sifr({ update: true }); 	
//jQuery('h2').sifr({ before: function () { alert('We need sIFR power for ' + this.length + ' object(s)!');   } });
});