jQuery.noConflict();
jQuery(document).ready(function(){

  // Faqs

	jQuery(".answer").hide();	
	
	jQuery(".question").click(function(){
	  jQuery(this)
	  .toggleClass("active")
	  .next(".answer")
	  .slideToggle("normal");
	});
	
	// Buy buttons
	
	jQuery("div.download_dialogue").hide();
	jQuery("div.doc_dialogue").hide();
	
	jQuery(".product-links a.download").click(function(){
	  jQuery(this)
	  .nextAll("div.download_dialogue")
	  .slideToggle("slow");	  
	});
	
	jQuery(".product-links a.download").click(function(){
	  jQuery(this)
	  .parent()
	  .next("div.doc_dialogue")
	  .slideToggle("slow");	  
	});	
	
	
	/*
	$("div.buy_dialogue").hide();
	$("div.buy_dialogue_landing").hide();
	
	$(".product-links a.buy").click(function(){
	  $(this)
	  .nextAll("div.buy_dialogue")
	  .slideToggle("slow");
	});
	
	$(".product-links a.continue").click(function(){
	  $(this)
	  .parents("div.buy_dialogue")
	  .slideUp("slow");
	});
	
	$("a.buy-landing").click(function(){
	  $(this)
	  .nextAll("div.buy_dialogue_landing")
	  .slideToggle("slow");
	});	
	*/
	  

});




