$(document).ready(function() {

	$("body").addClass("js");

	$(".menu ul li:first-child").addClass('first');
	$(".menu ul li:last-child").addClass('last');
	$("a.fancybox").fancybox({
		'titlePosition'	: 'over',
		'transitionIn'	: 'fade',
		'transitionOut'	: 'fade',
		'speedIn'		: 100,
		'speedOut'		: 100,
		'changeSpeed'	: 100,
		'changeFade'	: 'fast',
		'overlayOpacity': 0.9,
		'overlayColor'	: '#000',
		'padding'		: 1,
		'margin'		: 20
	});
	$("a.app_calc").fancybox({
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'titleShow': false,
    'type': 'iframe',
    'autoDimensions': false,
    'autoScale': false,
    'width': 915,
    'height': 500
	});
	/* selectbox */

	$("select.lang").sb({
		animDuration: 'fast',
		ddCtx: function() { return $(this).closest("form"); },
		fixedWidth: false
	});
	$("#sel_sekcia select").sb({
		animDuration: 'fast',
		ddCtx: function() { return $(this).closest("form"); },
		fixedWidth: false
	});
	$("select[name='sekcia']").bind('change',function(){
		document.location = this.value;
		return false;
	});
	// header slideshow
	$('#slideshow ul').cycle({
		fx: 'fade',
		speed: 500
	});

	// header black n white
	// $("img.bw1").hover(
	$("a.bw1a").hover(
		function() {
			$(this).stop().animate({"opacity": "0"}, "slow");
		},
		function() {
			$(this).stop().animate({"opacity": "1"}, "slow");
		});

});



