// JavaScript Document
$(document).ready(function(){
		$("body#home #infoblock").after("<img id=\"contentbtm\" src=\"/wp/wp-content/themes/g4g/img/global/content_btm.gif\" width=\"760\" height=\"17\" />");
		$("#content").after("<img id=\"contentbtm\" src=\"/wp/wp-content/themes/g4g/img/global/content_btm.gif\" width=\"760\" height=\"17\" />");
		
		
		$('#hn1').click(function() {
		$('#block0').hide();
		$('#block1').fadeIn("fast");
		$('#block2').hide();
		$('#block3').hide();
		$('#homenav li').removeClass('selected');
		$(this).addClass('selected');
		return false;
		});
		
		$('#hn2').click(function() {
		$('#block0').hide();
		$('#block1').hide();
		$('#block2').fadeIn("fast");
		$('#block3').hide();
		$('#homenav li').removeClass('selected');
		$(this).addClass('selected');
		return false;
		});
		
		$('#hn3').click(function() {
		$('#block0').hide();
		$('#block1').hide();
		$('#block2').hide();
		$('#block3').fadeIn("fast");
		$('#homenav li').removeClass('selected');
		$(this).addClass('selected');
		return false;
		});
		
		$('.question1').click(function() {
		$('#block0').hide();
		$('#block1').hide();
		$('#block2').fadeIn();
		$('#block3').hide();
		$('#homenav li').removeClass('selected');
		$('#hn2').addClass('selected');
		return false;
		});
		
		$('.question2').click(function() {
		$('#block0').hide();
		$('#block1').hide();
		$('#block2').hide();
		$('#block3').fadeIn();
		$('#homenav li').removeClass('selected');
		$('#hn3').addClass('selected');
		return false;
		});
		
		});
		

//*******************************************************************************************
//		HOME PAGE SLIDE SHOW (FLASH REPLACEMENT)
//*******************************************************************************************
jQuery(document).ready(function($){

	// Easing variables
	var fxIn= 'easeOutBack';
	var fxOut ='easeOutCirc';

	$('.detail').hide();
	$('<span>Close <b></b></span>').insertAfter('.col-second');
	var slidecontrol = $('.slide-control');
	
	$('.slide blockquote').bind('click', function() {
		$(this).next('.detail').fadeIn('slow');
	});
	$('.detail span').bind('click', function() {
		$(this).parent().fadeOut('slow');
	});
	
});	




//*******************************************************************************************
//		HOME PAGE SLIDE SHOW : TESTIMONIALS
//*******************************************************************************************

jQuery(document).ready(function($){
   $('#homeslides').cycle({
      fx:      'fade',		 
	  speed:	1000,
      timeout:  20000
   });
});		


