var goTOP = 'right';

function goa(){
	if(goTOP=='left'){
		$('#s_mid').animate({scrollLeft: "-=255"},{duration: 2500});	
	}
	else{
		$('#s_mid').animate({scrollLeft: "+=255"},{duration: 2500});	
	}
}

jQuery(document).ready(function() {
	$('#add_mail').click(function(event){
		$('#top_msg').load('/ajax.php?x=add&y='+document.getElementById('give_mail').value);						  
	});
   $('#remove_mail').click(function(event){
		$('#top_msg').load('/ajax.php?x=remove&y='+document.getElementById('give_mail').value);
	});
	
	$('a[rel*=facebox]').facebox();
	
	if ( $("#maly_l").length ) {
		var proced = "maly_l";
	}
	else{
		var proced = "obsah";
	}
	
	$('#'+proced+' img').each(function(index){
	$(this).replaceWith('<a href="'+$(this).attr('src')+'" class="lightbox" title="'+$(this).attr('alt')+'"><img align="'+$(this).attr('align')+'" width="'+$(this).attr('width')+'" height="'+$(this).attr('height')+'" alt="'+$(this).attr('alt')+'" src="'+$(this).attr('src')+'" class="'+$(this).attr('class')+'" style="'+$(this).attr('style')+'" hspace="'+$(this).attr('hspace')+'" vspace="'+$(this).attr('vspace')+'"></a>');
  });
  	$('a.lightbox').lightBox();	
	
	$("#p_mr").selectbox().bind('change', function(){ });
	$("#p_day").selectbox().bind('change', function(){ });
	$("#o_mr").selectbox().bind('change', function(){ });
	$("#o_day").selectbox().bind('change', function(){ });
	$("#o_a").selectbox().bind('change', function(){ });
	$("#o_d").selectbox().bind('change', function(){ });

	setInterval(goa,0);

});
