/* All this is for ie only */

var web_browser = navigator.userAgent;

if(web_browser.indexOf('MSIE') != -1){

	// alert('Oh noes, MSIE!');
	
	/* Article - latest comments with Disqus */
	window.attachEvent('onmessage', function(e) {
		// e.origin
		// alert(e.data);
		if(e.data == 'focusHead'){
			jQuery('html, body').animate({scrollTop: '0px'}, 0);
		}
	});
	
}
