
$(document).ready(function(){

	$('.optin_explanation_readmore').click(function() {
	  $('.optin_explanation').toggle("fast");
	});
	
	$('.readmore').click(function() {
		$(this).parent().next("div.more").toggle();
		$(this).parent().next("p.more").toggle();
	});
	
	$("#bothBtn").click(function(){
		$(".dom").fadeTo("fast", 1);
		$(".nodom").fadeTo("fast", 1);
		$("#domBtn").removeClass("highlight");
		$("#nodomBtn").removeClass("highlight");
		$("#bothBtn").removeClass("nohighlight").addClass("highlight");
	});
	
	$("#domBtn").click(function(){
		$(".dom").fadeTo("fast", 1);
		$(".nodom").fadeTo("fast", 0.15);
		$("#domBtn").addClass("highlight");
		$("#nodomBtn").removeClass("highlight");
		$("#bothBtn").removeClass("highlight").addClass("nohighlight");
	});

	$("#nodomBtn").click(function(){
		$(".nodom").fadeTo("fast", 1);
		$(".dom").fadeTo("fast", 0.15);
		$("#domBtn").removeClass("highlight");
		$("#nodomBtn").addClass("highlight");
		$("#bothBtn").removeClass("highlight").addClass("nohighlight");
	});

  
  /*
  
  $('a.menuLevel_1').hover(function()
    {
      $(this).css('background-image', 'url("../images/curvedVioletBorder_BT.gif")').show('slow');}, function(){
      $(this).css('background-image', 'url("../images/curvedGrayBorder_BT.gif")').show('slow');
    }
  );
  $('a.menuLevel_2').hover(function()
    {
      $(this).addClass('mouseover').show('slow');}, function(){
      $(this).removeClass('mouseover').show('slow');
    }
  );
  */
  
	
});

