// JavaScript Document

$(document).ready(function(){
						   
	// external links
	$('a[rel=external], a.external').click(function(){
		window.open(this.href);
		return false;
	});
	
	// slideshow
	$('#slideshow #slider').cycle({ 
		fx:             'fade',
		timeout:         6000,
		speed:           2500,
		next:   '#next-btn', 
    	prev:   '#prev-btn' 
});
	
	// testimonials panel
	// toggle
	$('#show-hide-btn').click(function() {
									   
		if($('#testimonials').hasClass('open')) {
			$('#testimonials .quote').fadeOut(200, function() {$('#show-hide-btn').animate({left:'25px'},620).addClass('expand');
				$('#testimonials').animate({width:'0'},750).removeClass('open');
			
			});
			
		} else {$('#show-hide-btn').animate({left:'260px'},920).removeClass('expand');
			$('#testimonials').animate({width:'295px'},750, 'linear', function() {
			
				$('#testimonials .quote').fadeIn();
				$('#testimonials').addClass('open');
			
			});
		
		}
		
	});
	
	//speech bubble contact form
	$('#speech-bubble').click(function() {
	
		$(this).animate({width:'495px', height:'230px'},500,'linear',function() {$('#contact-form').fadeIn();});
		var newHeight = $('#content').height() + 230;
		$('#content').animate({height:newHeight},500);
	
		$(this).unbind('click');
	});
	
	
 });

