$(document).ready(function()
{
	//$("#last_work a").fancybox();
	$("#portfolio a").fancybox({
		'width'	: 800,
		'height': 500,
		'autoScale'     	: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'	: 'iframe'
	});

	$("#hviezdoslavov").fancybox({
		'width'	: 600,
		'autoScale'     	: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'	: 'swf'
	});

	$("#eunica").fancybox({
		'width'	: 909,
		'height': 313,
		'autoScale'     	: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'	: 'swf'
	});

	$("#hanuliak").fancybox({
		'width'	: 860,
		'height': 330,
		'autoScale'     	: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'	: 'swf'
	});

	$("#web a").fancybox({
		'width'	: 800,
		'height': 500,
		'autoScale'     	: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'	: 'iframe'
	});

	$("#ilustracie a").fancybox({
		'width'	: 970,
		'height': 625,
		'autoScale'     	: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'	: 'iframe',
		'scrolling' : 'no'
	});

	$("#kontakt a").fancybox({
		'width'	: 640,
		'height': 300,
		'autoScale'     	: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'	: 'iframe'
	});

	$('#b1').click(function() {
		$('#b1').addClass('hover');
		$('#b2').removeClass('hover');
		$('#b3').removeClass('hover');

		$('#ba').fadeIn();
		$('#bb').hide();
		$('#bc').hide();
	}); 

	$('#b2').click(function() {
		$('#b1').removeClass('hover');
		$('#b2').addClass('hover');
		$('#b3').removeClass('hover');

		$('#ba').hide();
		$('#bc').hide();
		$('#bb').fadeIn();
	}); 

	$('#b3').click(function() {
		$('#b1').removeClass('hover');
		$('#b2').removeClass('hover');
		$('#b3').addClass('hover');

		$('#ba').hide();
		$('#bb').hide();
		$('#bc').fadeIn();
	}); 
});

function sound() {
	if(document.getElementById("sound").innerHTML == "") {
		document.getElementById("sound").innerHTML= "<object type='application/x-shockwave-flash' width='1' height='1' data='http://tobefree.wz.cz/musicplayer.swf?playlist_url=http://tobefree.wz.cz/playlist.xspf&autoplay=true&repeat=true&autoload=true'><param name='movie' value='http://tobefree.wz.cz/musicplayer.swf?playlist_url=http://tobefree.wz.cz/playlist.xspf&autoplay=true&repeat=true&autoload=true' /></object>";
	} else {
		document.getElementById("sound").innerHTML= "";
	}
}

function off() {
	document.getElementById("sound").innerHTML= "";
}

function snd() {
	sound();
	setTimeout(off, 29000);
}

