$(function() {
	
	// fancybox
	$('.fancybox').fancybox({
		margin: 20,
		padding: 0,
		centerOnScroll: true,
		overlayColor: '#000',
		overlayOpacity: 0.5
	});
	
	// szolgáltatások
	$('.szolgaltatasok .more').click(function() {
		if( $(this).parent('.news').children('.extra').css('display') == 'none' ) {
			$(this).parent('.news').children('.extra').slideDown(250);
			$(this).children('.bg').css({
				'background-position': '0 -32px'
			});
		}
		else {
			$(this).parent('.news').children('.extra').slideUp(250);
			$(this).children('.bg').css({
				'background-position': '0 0'
			});
		}
	});
	
	// infield label
	$('.infield').inFieldLabels();
	
	// form send
	$('#contact_submit').click(function() {
		
		var error = false;
		var name = $('#name').val();
		var email = $('#email').val();
		var message = $('#message').val();
		
		if( !validateFullName(name) ) {
			$('#name').colorHighlight({ 'animateColor': false, 'animateBackgroundColor': true });
			error = true;
		}
		
		if( !checkEmailAddress(email) ) {
			$('#email').colorHighlight({ 'animateColor': false, 'animateBackgroundColor': true });
			error = true;
		}
		
		if( empty(message, $('#message')) ) {
			$('#message').colorHighlight({ 'animateColor': false, 'animateBackgroundColor': true });
			error = true;
		}
		
		if( error ) {
			return false;
		}
		
	});
	
	// footer fix
	if( $(window).height() > $('#wrapper').height() + $('#footer_container').height() ) {
		$('#wrapper').css( 'min-height', $(window).height() - $('#footer_container').height() - 58 );
	}
	$(window).resize(function() {
		if( $(window).height() > $('#wrapper').height() + $('#footer_container').height() ) {
			$('#wrapper').css( 'min-height', $(window).height() - $('#footer_container').height() - 58 );
		}
	});
	
});

