var j = jQuery.noConflict();

j(document).ready(function() {

  // Cycle Lite

  j('.cycleLite').cycle({
    speed: 4000,
    fx: 'fade'
  });

  // Real Women quote navigation

  j('#realWomenLink1').click(function() {
    window.scrollTo(0, 0);
    j('#realWomenPage2').hide();
    j('#realWomenPage1').show();
    return false;
  });

  j('#realWomenLink2').click(function() {
    window.scrollTo(0, 0);
    j('#realWomenPage1').hide();
    j('#realWomenPage2').show();
    return false;
  });

  // EZ-Pages Gallery
  j('#ezPagesGallery .navigation a').click(function() {
    j('#ezPagesGallery .navigation a').removeClass('active');
    j('#ezPagesGallery .page').hide();
    j('#ezPagesGallery #' + j(this).attr('class')).fadeIn();
	j(this).addClass('active');
    return false;
  });

});
