$(document).ready(function(){					
		//$(".title").fadeIn(1000);
        $("#portrait_image").fadeIn(1300, function() {
			$("#wedding_image").fadeIn(1300, function() {
				$("#others_image").fadeIn(1300, function () {
					$("#footer").fadeIn(1300);
				})
			})
		})
		
		$("#portrait_image").fadeTo("normal", 0.6);
		$("#wedding_image").fadeTo("normal", 0.6);
		$("#others_image").fadeTo("normal", 0.6);
		
		$("#gallery_thumb").fadeIn(1300, function () {
			 $("#tag").fadeIn(1300, function() {
					$("#footer").fadeIn(1300);
				})
		})
		$("#innercontent").fadeIn(1300, function () {
			 $(".contenttable").fadeIn(1300, function() {
				 $("#footer").fadeIn(1300);
			})
		})
		
		$(document).ready(function(){ // This sets the opacity of the thumbs to fade down to 60% when the page loads
			//$("#products_image").fadeTo("slow", 1.0);
			//$("#portrait_image").fadeTo("slow", 1.0);
			//$("#wedding_image").fadeTo("slow", 1.0);
			//$("#scenery_image").fadeTo("slow", 1.0);
		
			$("#portrait_image").hover(function(){
				$("#portrait_image").fadeTo("normal", 1.0); // This sets the opacity to 100% on hover
				},function(){
				$("#portrait_image").fadeTo("normal", 0.6); // This sets the opacity back to 60% on mouseout
			});
			$("#wedding_image").hover(function(){
				$("#wedding_image").fadeTo("normal", 1.0); // This sets the opacity to 100% on hover
				},function(){
				$("#wedding_image").fadeTo("normal", 0.6); // This sets the opacity back to 60% on mouseout
			});
			$("#others_image").hover(function(){
				$("#others_image").fadeTo("normal", 1.0); // This sets the opacity to 100% on hover
				},function(){
				$("#others_image").fadeTo("normal", 0.6); // This sets the opacity back to 60% on mouseout
			});			
		});
	//$("#products").hover(function () {
    	//  $(this).fadeTo("slow", 0.33);
    //});
}); 


<!--

//Disable right mouse click Script

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")

// -->

