
jQuery(document).ready(function () {
	jQuery("#transcendLogo img").click(openwin);
});

var openwin = function () {
	var imgsrc = jQuery("#transcendLogo img").attr("src");
	var windowOptions = "directories=0,menubar=0,personalbar=0,status=0,resizable=1";
	windowOptions += ",width=420,height=350,top=10,left=60";
	window.open(imgsrc, "TranscendPic", windowOptions);
};

