window.addEvent('domready', function() {

	var myFx1 = new Fx.Tween('ib1');
	var myFx2 = new Fx.Tween('ib2');

	$('ib1').addEvent('click', function() {
		if ( $('ib2').getStyle('color') == '#636363' )
			window.location = 'http://' + location.hostname + '/shopping/category/147/rand/1';
		else {
			myFx1.set('background','url("../grafika/bsc.gif") repeat-x');
			myFx2.set('background','url("../grafika/bnc.gif") repeat-x');
			myFx1.set('color','#d16263');
			myFx2.set('color','#636363');
			var req = new Request.HTML({
				url: 'http://' + location.hostname + '/inc_inwestuj/show/?ic=147',
				method: 'get',
				onComplete: function() {
						var p = new Preloader();
						$$('.preInwestuj img').each(function(img) {
						p.addEventOnLoad(img.src, function() {
							img.getParent().setStyle('background', 'none');
							img.setStyle('opacity', 0)
							img.style.display = 'block';
							img.tween('opacity', 1)
						});
						p.addToQueue(img.src);
					});
				},
				update: 'inwestuj_okno'}).send();
		}
	});

	$('ib2').addEvent('click', function() {
		if ( $('ib1').getStyle('color') == '#636363' )
			window.location = 'http://' + location.hostname + '/shopping/category/147/rand/1';
		else {
			myFx1.set('background','url("../grafika/bnc.gif") repeat-x');
			myFx2.set('background','url("../grafika/bsc.gif") repeat-x');
			myFx1.set('color','#636363');
			myFx2.set('color','#d16263');
			var req = new Request.HTML({
				url: 'http://' + location.hostname + '/inc_inwestuj/show/?ic=148',
				method: 'get',
				onComplete: function() {
						var p = new Preloader();
						$$('.preInwestuj img').each(function(img) {
						p.addEventOnLoad(img.src, function() {
							img.getParent().setStyle('background', 'none');
							img.setStyle('opacity', 0)
							img.style.display = 'block';
							img.tween('opacity', 1)
						});
						p.addToQueue(img.src);
					});
				},
				update: 'inwestuj_okno'}).send();
			}
		});
});
