$(function() {
// OPACITY OF BUTTON SET TO 50%
$("img.a").css("opacity","1.0");
		
// ON MOUSE OVER
$("img.a").hover(function () {
										  
// SET OPACITY TO 100%
$(this).stop().animate({
opacity: "0.7"
}, "slow");
},
		
// ON MOUSE OUT
function () {
			
// SET OPACITY BACK TO 50%
$(this).stop().animate({
opacity: "1.0"
}, "slow");
});
});

$(function() {
// OPACITY OF BUTTON SET TO 50%
$("img.b").css("opacity","0.3");
		
// ON MOUSE OVER
$("img.b").hover(function () {
										  
// SET OPACITY TO 100%
$(this).stop().animate({
opacity: "1.0"
}, "slow");
},
		
// ON MOUSE OUT
function () {
			
// SET OPACITY BACK TO 50%
$(this).stop().animate({
opacity: "0.3"
}, "slow");
});
});

function disabletext(e){
return false
}

function reEnable(){
return true
}

//if the browser is IE4+
document.onselectstart=new Function ("return false")

//if the browser is NS6
if (window.sidebar){
document.onmousedown=disabletext
document.onclick=reEnable
}



