// JavaScript Document
(function($) {
// sifr go
	$(function () {
		$.sifr({path:'fonts'});
		$('h1').sifr({font:'magistral-c-medium'});
		$('h2').sifr({font:'magistral-c-medium',textTransform:'uppercase'});
	});
// end sifr go

// png fix
	$(document).ready(function(){ 
		$(document).pngFix(); 
	}); 
// end png fix

// header slideshow
	$(document).ready(function(){ 
		$('#my_gallery').innerfade({
			speed: 'slow',
			timeout: '7000',
			type: 'sequence',
			containerheight: '1024px'
		}); 
	});
// end header slideshow

// stripy table
	$(document).ready(function(){
		makeStripy('stripy', 'oddrows', 'evenrows');
	}); 
// end stripy table
})(jQuery); 

//// JavaScript Document
//
//// sifr go
//jQuery.noConflict()(function () {
//	jQuery.sifr({path:'fonts'});
//	jQuery('h1').sifr({font:'magistral-c-medium'});
//	jQuery('h2').sifr({font:'magistral-c-medium',textTransform:'uppercase'});
//});
//// end sifr go
//
//// png fix
//jQuery.noConflict()(document).ready(function(){ 
//	jQuery(document).pngFix(); 
//}); 
//// end png fix
//
//// header slideshow
//jQuery.noConflict()(document).ready(function(){
//	jQuery('#my_gallery').innerfade({
//		speed: 'slow',
//		timeout: '7000',
//		type: 'sequence',
//		containerheight: '1024px'
//	}); 
//});
//// end header slideshow
