// Hide/Display Content

$(document).ready(function(){

// Switch Posters with Instructions  
		//Hide div w/id extra
		$("#posters").css("display","none");
		// Add onclick handler to checkbox w/id checkme
		$("#radiobutton_1").click(function(){
			// If checked
			if ($("#radiobutton_1").is(":checked"))
			{
            //show the hidden div
            $("#posters").show("fast");
			}
        	else
        	{     
            //otherwise, hide it
            $("#posters").hide("fast");
        	}
      	});
      
// Poster Copy
		$("div#posterright .posterother").css("display","none");
		$("#radiobutton_7").click(function(){
       		if ($("#radiobutton_7").is(":checked"))
        	{
            $("div#posterright .posterother").show("fast");
        	}
        	else
        	{     
            $("div#posterright .posterother").hide("fast");
        	}
		});
      	
// Switch Cover Posters 
		$("#coverposter").css("display","none");
		$("#radiobutton_13").click(function(){
			if ($("#radiobutton_13").is(":checked"))
			{
            $("#coverposter").show("fast");
			}
        	else
        	{     
            $("#coverposter").hide("fast");
        	}
      	});
      	
// Cover Poster Copy
		$("div#coverposterright .coverposterother").css("display","none");
		$("#radiobutton_14").click(function(){
       		if ($("#radiobutton_14").is(":checked"))
        	{
            $("div#coverposterright .coverposterother").show("fast");
        	}
        	else
        	{     
            $("div#coverposterright .coverposterother").hide("fast");
        	}
		});
		     
// Switch Fliers
		$("#fliers").css("display","none");
		$("#radiobutton_2").click(function(){
       		if ($("#radiobutton_2").is(":checked"))
        	{
            $("#fliers").show("fast");
        	}
        	else
        	{     
            $("#fliers").hide("fast");
        	}
		});
		
// Flier Copy
		$("div#flierright .flierother").css("display","none");
		$("#radiobutton_8").click(function(){
       		if ($("#radiobutton_8").is(":checked"))
        	{
            $("div#flierright .flierother").show("fast");
        	}
        	else
        	{     
            $("div#flierright .flierother").hide("fast");
        	}
		});
		  		
// Switch Postcards
       	$("#postcards").css("display","none");
       	$("#radiobutton_3").click(function(){
	        if ($("#radiobutton_3").is(":checked"))
        	{
            $("#postcards").show("fast");
        	}
        	else
        	{     
            $("#postcards").hide("fast");
        	}
      	});
      	
// Postcard copy 
		$("div#postcardright .postcardother").css("display","none");
		$("#radiobutton_9").click(function(){
			if ($("#radiobutton_9").is(":checked"))
			{
            $("div#postcardright .postcardother").show("fast");
			}
        	else
        	{     
            $("div#postcardright .postcardother").hide("fast");
        	}
      	});
      
// Switch Bookmarks
       	$("#bookmarks").css("display","none");
       	$("#radiobutton_4").click(function(){
			if ($("#radiobutton_4").is(":checked"))
        	{
            $("#bookmarks").show("fast");
        	}
        	else
        	{     
            $("#bookmarks").hide("fast");
        	}
      	});
      	
// Bookmarks Copy Front
       	$("div#bookmarkcopyleft .bookmarkother").css("display","none");
       	$("#radiobutton_12").click(function(){
			if ($("#radiobutton_12").is(":checked"))
        	{
            $("div#bookmarkcopyleft .bookmarkother").show("fast");
        	}
        	else
        	{     
            $("div#bookmarkcopyleft .bookmarkother").hide("fast");
        	}
      	});
      	
// Bookmarks Copy Back
       	$("div#bookmarkcopyright .bookmarkother").css("display","none");
       	$("#radiobutton_11").click(function(){
			if ($("#radiobutton_11").is(":checked"))
        	{
            $("div#bookmarkcopyright .bookmarkother").show("fast");
        	}
        	else
        	{     
            $("div#bookmarkcopyright .bookmarkother").hide("fast");
        	}
      	});      
      	
// Switch Stickers
		$("#stickers").css("display","none");
       	$("#radiobutton_5").click(function(){
        	if ($("#radiobutton_5").is(":checked"))
        	{
            $("#stickers").show("fast");
        	}
        	else
        	{     
            $("#stickers").hide("fast");
        	}
      	});
      	
// Sticker Copy
		$("div#stickerright .stickerother").css("display","none");
       	$("#radiobutton_10").click(function(){
        	if ($("#radiobutton_10").is(":checked"))
        	{
            $("div#stickerright .stickerother").show("fast");
        	}
        	else
        	{     
            $("div#stickerright .stickerother").hide("fast");
        	}
      	});
      
});