


$(document).ready(function(){
$("img").click(function(){
var mytitle = $(this).attr('alt');
var preid = $(this).attr('src');
var regvtop = /(\/top\/)/g;
var cvtopt = regvtop.test(preid);

if(cvtopt==true){
var regunit=new RegExp("[\./]+", "g");
var secid=preid.split(regunit);
var id=secid[6];
$.get("?out="+id ,function(data){});
opensaysDesignerWiz=window.open("http://"+mytitle);
}
});

$("img").hover(function(){
var mytitle = $(this).attr('alt');
var preid = $(this).attr('src');
var regvtop = /(\/top\/)/g;
var cvtopt = regvtop.test(preid);

if(preid!='http://www.mixannu.com/images/header.gif' && cvtopt==true){
window.status='http://'+mytitle+''; return true;
}
});

$("em").click(function(){
var mytitle = $(this).attr('title');
var id = $(this).attr('id');
$.get("?out="+id ,function(data){});
opensaysDesignerWiz=window.open("http://"+mytitle);
});

$("em").hover(function(){
var mytitle = $(this).attr('title');
window.status='http://'+mytitle+''; return true;
});
});

function out(id){
(new Image()).src="?out="+id;
return true;
}
function out2(id){
opensaysDesignerWiz=window.open("?out="+id);
}


