//Shadowbox.loadSkin('classic', 'assets/shadowbox/skin');
$().ready(function(){
		toggle_label();
		incubator();
		$('#marquee').marquee('js-marquee');
});

function toggle_label() {
	var selectors = '.column input[type="text"], .column input[type="password"]';
	$(selectors).focus(function(){
			$(this).siblings('label').hide();
		});
	$(selectors).focus(function(){
		if($(this).attr('value') != '') {
			$(this).siblings('label').show();
		}
	});

}

function incubator() {
	$('[rel="remove"],[rel="delete"]').click(function(){
		if(!confirm('Opravdu si přejete smazat tuto položku?')) {
			return false;
		}
	});

}
