$(document).ready(
		function() {
			$('.photos a').lightBox({
				txtImage : 'Fotografie',
				txtOf : 'z'
			});
			$('#footer ul li').hover(function() {
				$(this).stop({
					clearQueue : true
				}).animate({
					left : '-5px'
				})
			}, function() {
				$(this).stop({
					clearQueue : true
				}).animate({
					left : '0'
				})
			});
			$('.menulist li').hover(function() {
				$(this).addClass('active');
				$(this).find('ul').hide().slideUp(1).slideDown(200);
			}, function() {
				$(this).removeClass('active');
				$(this).find('ul').slideUp(300);
			});
			
			//Textsize icon
			$('.textsize').click(function() {
				if ($('.content').css('fontSize') == '12px') {
					$('.content').css('fontSize', '14px');
					$('h1').add('h2').css('fontSize', '26px');
				} else {
					$('.content').css('fontSize', '12px');
					$('h1').add('h2').css('fontSize', '22px');
				}
			});
			
			
			//Print icon
			$('.print').click(function() {
				window.print();
			});
			
			FormValidator.init();
			
			//main gallery
		    $('.carousel').SeedGallery({
		        items:'.hp_top .carousel img',
		        bullets:'.hp_top .hp_images .top_one_img',
		        //leftBtn:'#carousel-nav-left',
		        //rightBtn:'#carousel-nav-right',
		        intervalSpeed: 7000,
		        diff: 936,
		        //timerLine: '#carousel .bar'
		    });
});
