function matchHeight() {
	var finalHeight = document.getElementById('container').offsetHeight - document.getElementById('header').offsetHeight - document.getElementById('main').offsetHeight;
	var mainElement = document.getElementById('footer');
	mainElement.style.margin = finalHeight - 75 + 'px 0 0 0';
}	
window.onload = function() {
	matchHeight();
}
window.onresize = function() {
	matchHeight();
}
//Slider
$(document).ready(function() {

	$('#pics').cycle({ 
	    fx:     'fade', 
	    speed:   500, 
	    timeout: 2000,  
	    pause:   0
	});

});