$(document).ready(function() {
	// fix png for IE
	$('img[src$=.png], div').ifixpng();

	// cycle images
	$('#tabs div').before('<ul id="nav">').cycle({
		fx:     'fade',
		speed:  'fast',
		timeout: 9000,
		pager:  '#nav',

		// callback fn that creates a thumbnail to use as pager anchor
		pagerAnchorBuilder: function(idx, slide) {
			return '<li><a class="'+ slide.alt +'" href="#">'+ slide.alt +'</a></li>';
		}
	});
});
