$(document).ready(function(){
	$(".unipak").fadeTo("slow", 1.0); 
	$(".unipak").hover(function(){
	$(this).fadeTo("slow", 1.0); 
	},function(){
	$(this).fadeTo("slow", 1.0); 
	});
});

$(document).ready(function(){
	$(".mini").fadeTo("slow", 0.5); 
	$(".mini").hover(function(){
	$(this).fadeTo("slow", 1.0); 
	},function(){
	$(this).fadeTo("slow", 0.5); 
	});
});

$(document).ready(function(){
	$(".bx-prev").fadeTo("slow", 0.5); 
	$(".bx-prev").hover(function(){
	$(this).fadeTo("slow", 1.0); 
	},function(){
	$(this).fadeTo("slow", 0.5); 
	});
});



