$(document).ready(
	function(){

// read more buttton  + show hide

$('.about-us .hldr').hide();
$('.intro-home').height('232px');
$('.hp_imgs_hldr .crnrs').hide();
$('.about-us').prepend('<a href="#" id="btn-readmore">Read more about us</a>');	
$('#btn-readmore').click(
function()
{
	$('.hp_imgs_hldr .crnrs').toggle(); $('.about-us .hldr').toggle(); $('#btn-readmore').toggleClass('close'); 	
	
	return false;
}
);

$('#hp_imgs').innerfade({
				speed: 'slow',
				timeout: 4000,
				type: 'sequence',
				containerheight: '389px'
			});


});

