$(document).ready(function(){
	if($('#nav').length > 0) {
		$('#nav').html('');
	}
	
	$('.container').cycle({ 
	    fx:      'fade', 
	    speed:    850, 
	    timeout:  6000,
		pager: '#nav',
		pagerAnchorBuilder: function(idx, slide) { 
			idx=idx+1;
              return '<li><a href="#"><img src="http://www.aspeinc.com/public/images/pictures/rotate-thumb-'+idx+'.jpg" alt="" /></a></li>';
        },
		activePagerClass: 'active'
	});

	$('.auto-hint').focus(function(){
		if ($(this).attr('value') == $(this).attr('title')) $(this).attr('value', '');
	});
	$('.auto-hint').blur(function(){
		if ($(this).attr('value') == '') $(this).attr('value', $(this).attr('title'));
	});
	
   jQuery('#content .maincontent .photoarea UL LI A ').hover(function(){
		jQuery('#content .maincontent .sidebarleft .changeable H3').html(jQuery(this).children('SPAN.name').html());
		jQuery('#content .maincontent .sidebarleft .changeable #info').html(jQuery(this).parent().find('.invisible').html());
   })
	
});
