$(document).ready(function() {

	 // FAQ PAGE SHOW/HIDE
     var showText="Answer";
     var hideText="Hide Answer";
     $(".toggle").prev().append('&nbsp;&nbsp;<a href="#" class="toggleLink">'+showText+'</a>');
     $('.toggle').hide();
     $('a.toggleLink').click(function() {
     
          if ($(this).text()==showText) {
          	$(this).text(hideText);
          }
          else {
          	$(this).text(showText);
          }
          $(this).parent().next('.toggle').slideToggle('slow');
          return false;
     });
	 
	 
	 // MERCY WATSON PAGE CAROUSEL
	 $("#mycarousel").jcarousel({
        itemVisible: 1,
        itemScroll: 1
    });
	
	// FIRE UP IMAGES LIGHTBOX
	$("a.colorbox").colorbox({transition:'fade'});
	
	// OPEN SOME LINKS IN NEW WINDOW
	$('a[rel=external]').attr("target","_blank");
	
	// FIRE UP HOME SLIDESHOW
	$('#home-slideshow').cycle();

	
});
