
/**
 Sets the opacity of specified elements by classes
*****MAIN MENU: CATEGORIES*****
 */
$(document).ready(function(){
// Sets the opacity of the images with class "fadebttn1" to the desired starting opacity level on page load
	$("#content .page_item li").fadeTo("fast", 0.8);
 
	$("#content .page_item li").hover(function(){
// Sets opacity level on hover event
		$(this).fadeTo("fast", 0.5);
		},function(){
// Sets opacity level on mouseout event
		$(this).fadeTo("fast", 0.8);
	});
});

/**
 Sets the opacity of specified elements by classes
*****HEADINGS*****
 */
$(document).ready(function(){
// Sets the opacity of the images with class "fadebttn1" to the desired starting opacity level on page load
	$("#content h2,#homepage h3,#footer").fadeTo("fast", 0.8);
});

/**
 Sets the opacity of specified elements by classes
*****FOOTER: Web Host*****
 */
$(document).ready(function(){
// Sets the opacity of the images with class "fadebttn1" to the desired starting opacity level on page load
	$("#footer_bottom .footer_l img").fadeTo("fast", 0.5);
 
	$("#footer_bottom .footer_l img").hover(function(){
// Sets opacity level on hover event
		$(this).fadeTo("fast", 1.0);
		},function(){
// Sets opacity level on mouseout event
		$(this).fadeTo("fast", 0.5);
	});
});



