$(document).ready(function(){
    $("ul li:last-child").addClass("last");
    $("ul li:first-child").addClass("first");
	$(".image_set .image_link:last-child").addClass("last");
    $(".image_set .image_link:first-child").addClass("first");
	$("section h3:last-child").addClass("last");
    $("section h3:first-child").addClass("first");
	$(".home .content_box_corner:odd").css('margin-right', '0');
	
	$("section .gallery a").fancybox();
	$(".section .gallery a").fancybox();
	$("article .gallery a").fancybox();
	$(".article .gallery a").fancybox();
	$(".other_gallery a").fancybox();
	$('.wp-caption a').fancybox();

	$(".page-id-11 section tr:odd").css("background-color", "#ececec");
	$(".page-id-11 section th").css("background-color", "#fff");
	
	$('.wpcf7-form input').each(function(){if($(this).hasClass('wpcf7-validates-as-required')){$(this).parent().parent().addClass('required')}});
	
	$(window).resize(windowResize);	windowResize();
	

	
  });

var dif = 0;

function windowResize(){
	var offset = $('footer').offset();
	if($('body').hasClass('home')){
		dif = $(window).height() - offset.top - 320;
	}else{
		dif = $(window).height() - offset.top - 100; 
	}
	//document.title = dif;
	if (dif < 0)
		dif = 0;
	$('#filler').css('height', dif + 'px');
}
