/* 

Bootup Script
v. 2.0

last mod: 10-16-09
by: Mark

jQuery calls.


*/


/*################################################################################## */

$(document).ready(function() {
	$('#navigation ul').addClass('lavalamp');
	$('#navigation ul').lavaLamp({ fx: "backout", speed: 700 });
	
	if ($('#ind-graphics').length > 0) {
		$('#ind-graphics').append('<ul id="graphic-nav"></ul>');
		$('#ind-graphics ul#graphics').cycle({ 
			fx:     'fade', 
			speed:   500, 
			timeout: 8000,
			pause: 1,
			pager:  '#graphic-nav',
			pagerAnchorBuilder: function(idx, slide) {
				label = $('img',slide).parent().parent().prevAll().length + 1;
				//if (label < 10) { label = '0' + label; }
                return '<li><a href="#">' + label + '</a></li>';
			} 
		});	
	}
	
	$('#top-link').click(function() {
		$(document).scrollTo("#masthead", 1000);
		return false;
	});
	
},function(){
	//GUnload();
});