$(document).ready(function(){
						   $(".list img, .afdalelamal .grid_7 img").fadeTo("fast", 1.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".list img, .afdalelamal .grid_7 img").hover(function(){
						   $(this).fadeTo("fast", 0.8); // 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(){
						   $("#text p").fadeTo("fast", 1.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#text p").hover(function(){
						   $(this).fadeTo("fast", 0.8); // 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(){
						   $(".grid_7").fadeTo("fast", 1.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".grid_7").hover(function(){
						   $(this).fadeTo("fast", 0.8); // 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
							   	});
						   });



<!--

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="Function Disabled!";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("return false")

// --> 

