 $(function(){
 
 	function featureSize() {
					$win = $(window).width();
					if ($win < 1280)
					{ imgHeight = 840 }
					else if ($win > 1280)
					{ imgHeight = 1000 }
					else
					{ imgHeight = $win }
					$('.mp_feature').css('height',imgHeight)
				}

		featureSize();
		$(window).resize(function(){
			featureSize();
		})

		// $id = $('body').attr('id');
		// 		 	if ($id ==='mp'){$e = $('#logo').find('img');$e.attr('src', '/frontend/images/gui/ssense_header_logo_w.png');}
		// 			$('html').addClass('white');

})

