$(document).ready(function(){
	$('#menu').tabify();

	
	$('#images').after('<ul id="slides-nav">').cycle({ 
	    fx:     'fade', 
	    speed:  'fast', 
	    timeout: 0, 
	    pager:  '#slides-nav', 
	     
	    // callback fn that creates a thumbnail to use as pager anchor 
	    pagerAnchorBuilder: function(idx, slide) { 
	    	var slideSRC= $(slide).find('img').attr('src');
	        return '<li><a href="#"><img src="' + slideSRC+ '" width="90" height="72" /></a></li>'; 
	    } 
	});
});
