jQuery.noConflict();
jQuery(document).ready(function (){
	jQuery(function(){
		if (jQuery("a:not(a.none)")) {
			jQuery("a:not(a.none)").hover(
			function() {
			jQuery(this).fadeTo(300, 0.7);
			},
			function() {
			jQuery(this).fadeTo(300, 1.0);
			}
			);
		}
	});
});
