$(document).ready(function(){

		$(".image").click(function() {
			var image = $(this).attr("rel");
			$('#image').hide();
			$('#image').fadeIn('slow');
			$('#image').html('<img src="' + image + '"/>');
			
		return false;
		});
		
		
		$('.info_box_row_wrap').each(function(index) {
    		var wrap_height = $(this).outerHeight();
    		$('.info_box', this).css('height',wrap_height);
		});


   		var highlight_wrap_height = $('.highlight_wrap').outerHeight();
   		var highlight_wrap_height_no_padding =  Number(highlight_wrap_height) - 80;
   		$('.highlight_box').css('height',highlight_wrap_height_no_padding);

	
	// TESTIMONIALS
	$('#testimonials .slide').eq(0).fadeIn(500);
	setInterval(function(){
		$('#testimonials .slide').filter(':visible').fadeOut(500,function(){
			if($(this).next('li.slide').size()){
				$(this).next().fadeIn(500);
			}
			else{
				$('#testimonials .slide').eq(0).fadeIn(500);
			}
		});
	},15000);	

	// HOMEPAGE BANNER
	$('#home_image_banner img').eq(0).fadeIn(500);
	setInterval(function(){
		$('#home_image_banner img').filter(':visible').fadeOut(500,function(){
			if($(this).next('img').size()){
				$(this).next().fadeIn(500);
			}
			else{
				$('#home_image_banner img').eq(0).fadeIn(500);
			}
		});
	},7000);	


});






