$(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(){
						   $("#topnav").fadeTo("slow", 0.6); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#topnav").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.6); // This should set the opacity back to 30% on mouseout
							   	});
						   
						   /*-------------*/
						   $("#box1 .title-bar, #box2 .title-bar, #box3 .title-bar, #box-latest .title-bar").fadeTo("slow", 1.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#box1 .title-bar, #box2 .title-bar, #box3 .title-bar, #box-latest .title-bar").hover(function(){
						   $(this).fadeTo("slow", 0.5); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("fast", 1.0); // This should set the opacity back to 30% on mouseout
							   	});
						   
						   });

				   /*-------------*/
$(document).ready(function(){
						   $("#sidebarBox .title, #sidebarBox2 .title").fadeTo("slow", 1.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#sidebarBox .title, #sidebarBox2s .title").hover(function(){
						   $(this).fadeTo("slow", 0.6); // 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(){
						   $("#header").fadeTo("slow", 1.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#header").hover(function(){
						   $(this).fadeTo("slow", 0.6); // 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(){
						   $("#featured-listing img").fadeTo("slow", 0.7); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#featured-listing img").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.7); // This should set the opacity back to 30% on mouseout
							   	});
						   });

