/*
	by c.bavota
	http://bavotasan.com/downloads/full-sizebackground-image-jquery-plugin/
*/
(function($) {
  $.fn.fullBg = function(){
    var bgImg = $(this);		
 
    function resizeImg() {
      var imgwidth = bgImg.width();
      var imgheight = bgImg.height();
 
      var winwidth = $(window).width();
      var winheight = $(window).height();
 
      var widthratio = winwidth / imgwidth;
      var heightratio = winheight / imgheight;
 
      var widthdiff = heightratio * imgwidth;
      var heightdiff = widthratio * imgheight;
 
      if(heightdiff>winheight) {
        bgImg.css({
          width: winwidth+'px',
          height: heightdiff+'px'		  
        });
      } else {
        bgImg.css({
          width: widthdiff+'px',
          height: winheight+'px'
        });		
      }
    } 
	function setHeight(){
		$("#page-content section").height($("#container").height()-190+'px');
		$("#page-content aside").height($("#container").height()-200+'px');		
	}
    resizeImg();
	setHeight();
    $(window).resize(function() {
      resizeImg();
	  setHeight();
    }); 
  };
})(jQuery)
