$(function() {
	$(".external").attr("target","_blank");
});

 function updateOrientation()
          {
           currentWidth = window.innerWidth; 
           //document.getElementById('count').innerHTML =
           //"[width = " + currentWidth + "px]"; 
           var orient = currentWidth == 320 ? "profile" : "landscape"; 
           document.body.setAttribute("orient", orient);          
           }
