$('#left img, #news img').hover(
	function() {
		$(this).fadeTo('fast', 1, 
			function() {
			}
		);
	},
	
	function() {
		$(this).fadeTo('fast', 0.7, 
			function() {
			}
		);
	}
);

$(document).ready(function() {
    $('#catchImg').cycle({
		fx: 'fade'
	});
});

jQuery(function(){
	jQuery('ul.sf-menu').superfish();
});
