var myrules = {
'a.blank' : function(el)
{
el.onclick = function()
{
window.open(el.href);
return false;
}
},
'.video' : function(el)
{
var video = el.id.replace(/video_/, "");
var flashvars = {
image: "/custom/media/swf/"+video+"_thumb.jpg",
file: "/custom/media/swf/"+video+".mov",
displayheight: "9999"
};
var params = {
allowfullscreen: "true"
};
var attributes = {
};
el.parentNode.style.height = "13em";
swfobject.embedSWF("/custom/media/swf/mediaplayer.swf", el.id, "100%", "100%", "9.0.98", "/custom/js/expressInstall.swf", flashvars, params, attributes);
},
'.banner' : function(el)
{
var s1 = new SWFObject("/custom/media/swf/468x60.swf","banner","486","60","9");
s1.write(el);
},
'.studie' : function(el)
{
el.parentNode.style.height = "13em";
swfobject.embedSWF("/custom/media/swf/wahrnehmung.swf", "holder", "100%", "100%", "8", "/custom/js/expressInstall.swf");
},
'a.haendler' : function(el)
{
el.onclick = function()
{
// web metrics
dcsMultiTrack('WT.cg_n','Dealers and Partners','WT.cg_s', el.title);
window.open(el.href);
return false;
}
}
}
// register behaviour
if( typeof Behaviour != "undefined")
Behaviour.register(myrules);