$(function(){
		$('.link').mouseover(function(){
			var link = $(this).attr("alt")
			$(this).attr("src", "images/o-" + link + ".jpg");
		}).mouseout(function(){
			var link = $(this).attr("alt");
			$(this).attr("src", "images/" + link + ".jpg");
		});

    $('#container-1 > ul').tabs();
    $('#container-2 > ul').tabs();
    
	$('#category1').cycle({
    fx:     'fade',
    speed:  'fast',
    timeout: 0,
    next:   '#next1',
    prev:   '#prev1'
	});
	
	$('#category2').cycle({
    fx:     'fade',
    speed:  'fast',
    timeout: 0,
    next:   '#next2',
    prev:   '#prev2'
	});

	$('#category3').cycle({
    fx:     'fade',
    speed:  'fast',
    timeout: 0,
    next:   '#next3',
    prev:   '#prev3'
	});
	$('#category4').cycle({
    fx:     'fade',
    speed:  'fast',
    timeout: 0,
    next:   '#next4',
    prev:   '#prev4'
	});
	$('#category5').cycle({
    fx:     'fade',
    speed:  'fast',
    timeout: 0,
    next:   '#next5',
    prev:   '#prev5'
	});
	$('#category6').cycle({
    fx:     'fade',
    speed:  'fast',
    timeout: 0,
    next:   '#next6',
    prev:   '#prev6'
	});
	$('#category7').cycle({
    fx:     'fade',
    speed:  'fast',
    timeout: 0,
    next:   '#next7',
    prev:   '#prev7'
	});
	$('#category8').cycle({
    fx:     'fade',
    speed:  'fast',
    timeout: 0,
    next:   '#next8',
    prev:   '#prev8'
	});
});