(function($) {
	$(document).ready(function() {	
		
		if ($.browser.msie == false) {
			$("img[alt=More]").css({ opacity:1 }).hover(function() {
				$(this).stop().animate({ opacity:0.7 }, 300);
			}, function(){
				$(this).stop().animate({ opacity:1 }, 300);
			});		
		}
		
		$('.block').filter(":odd").addClass('green');
		$('.more-text').wrap('<div></div>').after("<div class='clear'></div>");
		
		$('#slider').cycle({ 
			fx: 'fade', 
			timeout: 5000 
		});
		
	});
})(jQuery);
