jQuery.noConflict();

jQuery(document).ready(function(){

	jQuery('#splash').cycle({ 
		speed:  2000, 
		timeout: 7000, 
		pager:  '#pager',
		slideExpr: 'img'
	});
	
	// FIRE UP TOOL TIP ON CHECKOUT PAGES
	jQuery('a.load-cvv').cluetip({
		local: true,
		cursor: 'pointer',
		width: 375,
		hideLocal: true,
		showTitle: false
	});
	
	// FIRE UP ORDERING INFO PANEL SHOW/HIDE
	jQuery("div.panel-button a").click(function(){
	
		if (jQuery('div#topper-holder').is(":hidden"))
		{
			var link_text = "Close";
		}
		else
		{
			var link_text = "Ordering Information";
		}

		jQuery("div#topper-holder").slideToggle('normal');
		jQuery(this).text(link_text);

		return false;
	});
	
	// FIRE UP FAQS PAGE SHOW/HIDE
	var showText="Answer";
	var hideText="Hide Answer";
	jQuery(".question p").append('&nbsp;&nbsp;<a href="#" class="toggleLink">'+showText+'</a>');
	jQuery('.toggle').hide();
	jQuery('a.toggleLink').click(function() {

	  if (jQuery(this).text()==showText) {
		jQuery(this).text(hideText);
	  }
	  else {
		jQuery(this).text(showText);
	  }
	  jQuery(this).parent().parent().next('.toggle').slideToggle('fast');
	  return false;
	});
	 	 		 
	// HIDE OR SHOW CONTACT FORMS
	jQuery('#form-request-a-sample, #form-ask-a-question').hide();
	jQuery('#request-a-sample').click(function() {

		jQuery('#form-request-a-sample').slideToggle('fast');
		return false;
	});
	jQuery('#ask-a-question').click(function() {

		jQuery('#form-ask-a-question').slideToggle('fast');
		return false;
	});

	 
});

// PRELOAD HEADER IMAGES
jQuery(window).load(function () {

	jQuery.preload(['home_slides_1.jpg','home_slides_2.jpg','home_slides_3.jpg','home_slides_4.jpg','inner_splash_map.jpg','inner_splash_manipulatives.jpg','inner_splash_workbooks.jpg','inner_splash_research_based.jpg','inner_splash_knight.jpg'], {
    base:'/wp-content/themes/camelot_encore/img/'
	});
	
});
