$(document).ready(function() {
	var toggles = $('div.slider div.toggle');
	toggles.hide();
	var readmores = $('div.slider span.readmore');
	var closers = $('div.toggle span.close');
	readmores.html(' <a href="#">Read more <img src="/media/icon-down.gif" alt="click to read more" width="11" height="11" border="0" align="baseline" /></a>');
	closers.html(' <br /><br /><a href="#">Close <img src="/media/icon-up.gif" alt="close" width="11" height="11" border="0" align="baseline" /></a>');
	readmores.click(function() {
		$(this).hide();
		var thisclose=$(this).parents('div.slider').find('span.close');
		thisclose.show();
		var toggler = $(this).parents('div.slider').find('div.toggle');
		toggler.toggle('fast');
		return false;
		}
	);
	closers.click(function() {
		$(this).hide();			
		var toggler = $(this).parents('div.slider').find('div.toggle');
		toggler.toggle('fast');
		var thismore=$(this).parents('div.slider').find('span.readmore');
		thismore.show();
		return false;
		}
	);	
		
});

$(document).ready(function () {
	var features= $('div#content-left-home').find('div.f');
	features.hide().filter(':first').show();
	var buttons = $('div#feature-right a');
	buttons.click(function() {
			return false;
		}
	);	
	buttons.removeClass('selected').filter(':first').addClass('selected');
	buttons.hoverIntent(function() {
		$('div#feature-right a').removeClass('selected');
		$(this).addClass('selected');
		var features=$('div#content-left-home').find('div.f');
		var thisdiv='#feature-'+this.hash.replace('#','');
		var thisimage='/media/home-'+this.hash.replace('#','')+'-panel.jpg';
		var img=$('div#feature-right img');
		img.attr('src', thisimage);
		features.hide().filter(thisdiv).fadeIn();
		return false;		
	}, function() {});
});	
