$(document).ready(function(){
	
	// Big buttons menu
	var old_id;
	
	$('#_sklep_komputerowy').stop().animate({ marginTop: 0, opacity: 1 });
	$('#icon [id=ico_sklep_komputerowy]').show();
	$('#bigButtons a').mouseenter(
	function()
	{
		$('#_sklep_komputerowy').stop().animate({ marginTop: 170, opacity: 0 });
		id = $(this).attr('id');
		$('#about').hide();
		$('#bigButtons a').removeClass('active');
		$('#_'+old_id).stop().animate({ marginTop: 170, opacity: 0 });
		$('#_'+id).stop().animate({ marginTop: 0, opacity: 1 }, 500);
		$('#icon img').hide();
		$('#icon [id=ico_'+id+']').show();
		$(this).addClass('active');
		old_id = id;
	});

	// rotator
	$('#promo').cycle(
	{
		fx: 'curtainX',
		speed:    3000, 
		timeout:  8000,
		pause:   1,
		easing: 'easeInOutBounce'
	});
	
	// easter egg:)
	$('#secret').click(function()
	{
		$('#container').append('<img src="images/let_me_fix_it.jpg" class="cat" alt="Pozwól nam naprawić Twój komputer!">');
	});
});
