$(document).ready(function() {
	function _resize_carbonn_body(){
		var $winwidth	= $(window).width();
		var $winheight 	= $(window).height();
		var $bodyheight	= $("body").height();
		$imgheighth	= ($bodyheight>$winheight) ? $bodyheight : $winheight;
		$imgheighth	-= 115;
		$("img.source-header-image").attr({
				width: $winwidth
		});
		 $("img.source-body-image").attr({
				width: $winwidth
		});
		$("img.source-body-image").attr({
				height: $imgheighth
		});	
		var $winheight_root = $winheight-332;
		$("img.source-body-image-root").attr({
				height: $winheight_root
		});		
	}
	_resize_carbonn_body();
	$(window).bind("resize", function(){
		_resize_carbonn_body()	
	 });				
});

