$(document).ready(function(){
						    // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".position_index h1").hide();
						   $(".az").hover(function(){
						   $(this).fadeTo("slow", 0.3); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity back to 30% on mouseout
						   
						   });
						   });
$(document).ready(function(){
                           $(".az").hover(function() {
						   $(".position_index h1").show();
                           /*$("#mycarousel h1").animate({"marginLeft": "16px"}, "slow");*/
                           });
						   });

$(document).ready(function(){
                           $(".az").mouseout(function() {
						   $(".position_index h1").hide();
                           /*$("#mycarousel h1").animate({"marginLeft": "0px"}, "slow");*/
                           });
                           });
						   

$(document).ready(function(){
                           $(".position_index h1").hover(function() {
						   $(this).show();
                           /*$(this).animate({"marginLeft": "16px"}, "slow");*/
                           });
						   });

$(document).ready(function(){
                           $(".position_index h1").mouseout(function() {
						   $(this).hide();
                           /*$(this).animate({"marginLeft": "0px"}, "slow");*/
                           });
                           });



