$(document).ready(function() {
	$("#regform").validate();
	$("#applyform").validate();
	$("#contactform").validate();
	$("#profileform").validate();
	
	$('ul.tabs').tabs("div.panes > div.newtab", {

		// start from the beginning after the last tab
		rotate: true

	}).slideshow({
		clickable: false,
		autoplay:true,
		interval:4000
        });
	
	$("a[href^='http:']").not("[href*='mydomain.com']").attr('target','_blank'); 
});

$(function(){
	positionFooter(); 
	function positionFooter(){
		var padding_top = $(".footer").css("padding-top").replace("px", "");
		var page_height = $(document.body).height() - padding_top;
		var window_height = $(window).height();
		var difference = window_height - page_height;
		if (difference < 0) 
			difference = 0;
 
		$(".footer").css({
			padding: difference + "px 0 0 0"
		})
	}
 
	$(window)
		.resize(positionFooter)
});
