/* 
 * This Script opens a video in a new window when the user clicks on the "CEO" Image. 
 * Author - SYadavalli - Atmosol. 
 */
jQuery(document).ready(function() { 
var left = (screen.width/2) - 350; 
var top = (screen.height/2) - 325; 
var windowFeatures = 'width=700, height= 650, scrollbars=no, left=' + left + ', top=' + top 
jQuery("#top-10").find(".imageWidget").find("img").click(function() { 
window.open('http://freelife.http.internapcdn.net/freelife_vitalstream_com/Vitonomy/Videos/intro_video.html', 'ProductVideo', windowFeatures);
}); 

}); 

