$(document).ready(function() {
	$(".showLink").children("a").bind("click",function(){

		//get the question we clicked on
		var questionId = $(this).parent("span").attr("id");

		//hide all of the other questions and answers in the copy col
		$(".answerCol").children("p").hide();
		$(".rightCol").children("div").hide();
		
		//show the corresponding question and answer
		$("." + questionId).fadeIn();
		
	});
	
	//js for product rollover
	$(".product").bind("mouseover",function(){
		$(this).addClass("productOn");
		
	});
	$(".product").bind("mouseout",function(){
		$(this).removeClass("productOn");
		
	});
	
});