jQuery(function($) {
$('#bg').bgSwitcher({
	images: ['_own/link/img/bg/top_photo_.jpg', 1, 3],
			interval: 6000,
			duration: 1500
	});
});
$(function() {
    var num = 1;
    $('#nav li')
    .each(function(){
        $(this).css('background', 'url(_own/link/img/nav0'+num+'.png) no-repeat 10px -12px')
        num++;
    })
    .find('img').hover(
        function(){ 
            $(this).stop().animate({'opacity' : '0'}, 0); 
        },
        function(){
            $(this).stop().animate({'opacity' : '1'}, 0);
        }
    );
});
