$(document).ready(function(){

	$("a[rel=gallery]").fancybox({
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
	}); 

	$('#contactForm').submit(function(){
		var msg = '';
		var state = true;
		
		$(this).find("input[type='text']").each(function(){
			if($(this).attr('value') == '') {
				$(this).css('border', '1px solid red');
				state = false;	
			}
		});
	
		$(this).find("textarea").each(function(){
			if($(this).attr('value') == '') {
				$(this).css('border', '1px solid red');
				state = false;	
			}
		});	
	
		if($("input[name='captcha']").attr('value') != 'OP') {
			$("input[name='captcha']").css('border', '1px solid red');		
//			alert('Litujeme, ale neopsali jste správně kontrolní kód.');
		}
		return state;
		
	});
	
	$('#contactForm input').keyup(function(){
		if($(this).attr('value') != '') $(this).removeAttr('style');
	});

	$('#contactForm textarea').keyup(function(){
		if($(this).attr('value') != '') $(this).removeAttr('style');
	});
	
	//create scroller for each element with "horizontal_scroller" class...
	$('#newsText').SetScroller({	velocity: 	 80,
											direction: 	 'horizontal',
											startfrom: 	 'right',
											loop:		 'infinite',
											movetype: 	 'linear',
											onmouseover: 'play',
											onmouseout:  'play',
											onstartup: 	 'play',
											cursor: 	 'pointer'
										});	
	
});
