$(function(){
	$('#carousel1').infiniteCarousel();
});


function footer_bottom(content_block, hightstat){//footer bottom
 var content_height = $(content_block).height();
 var widows_height = $(window).height();
 var razn = widows_height - content_height - hightstat;
 razn = razn -290;
 if (razn > 0) {	
  razn = razn+'px';
  $(content_block).css('margin-bottom',razn)
  }
} 

$(document).ready(function(){
 
 if ($('.content').length > 0) {
  footer_bottom('.content',0);
 } 
 
 

});
