/*
$(document).ready(function(){
						   $(".latest_img").fadeTo("slow", 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".latest_img").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.3); // This should set the opacity back to 30% on mouseout
						   });
						   });

$(document).ready(function(){
						   $("#text p").fadeTo("slow", 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#text p").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.3); // This should set the opacity back to 30% on mouseout
							   	});
						   });
*/

$(document).ready(function(){
$("#choices").fadeTo(0,0, function(){
						   				$("#choices").css('display','block');
										$("#choices").fadeTo(2000, 1.0);
						   			});
/*
						   $("#logo").fadeTo(0,0, function(){
						   		$("#logo").css('display','block');
								$("#logo").fadeTo("slow", 1.0, function(){
										$("#choices").fadeTo(0,0, function(){
						   				$("#choices").css('display','block');
										$("#choices").fadeTo(2000, 1.0);
						   			});

								});
						   	}); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						  

						   $("#logo").hover(function(){
							   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
							   },function(){
						  		 $(this).fadeTo("slow", 0.3); // This should set the opacity back to 30% on mouseout
							   	});
							   	*/
						   
		
						   //$(".choicetext").fadeTo("slow", 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#choiceboxl").hover(function(){
						   		//$(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
						   		$('#choice_box_title_l').fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
						   		$('#choice_box_title_r').fadeTo("fast", 0.5); // This should set the opacity to 100% on hover
						   		
						   		//$("#choiceboxr").fadeTo("fast", 0.5); // This should set the opacity to 100% on hover
						   		},function(){});
						   		
						   $("#choiceboxr").hover(function(){
						   		//$(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
						   		$('#choice_box_title_r').fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
						   		$('#choice_box_title_l').fadeTo("fast", 0.5); // This should set the opacity to 100% on hover
						   		
						   		//$("#choiceboxl").fadeTo("fast", 0.5); // This should set the opacity to 100% on hover
						   		},function(){});


						   });
						   

