.::.:: Banner ::.::.
$('.selectorClass').hover(
function(){
	$(this).stop().fadeTo('slow',0.7);
},
function(){
	$(this).stop().fadeTo('slow',1);
});