Event.addBehavior({
".uj_element_1-pigeon:click": function(event) {
window.location='mailto:'+this.innerHTML; return false;
},
"#toggle_login": function(event) {
new Login(this,$("drop_login"),{forgotten_text:"Въведете потребителско име или ел. поща"});
},
"#language_box": function(event) {
new LanguageBox(this);
},
"#search_bar": function(event) {
new SearchBar(this);
},
"body": function(event) {
new GlobalEffects(this);
},
"#newsletter-email": function(event) {
this.onfocus = function(){if(this.value == 'твоята ел. поща')this.value = ''; this.parentNode.className = 'newsletter over'}; this.onblur = function(){if(this.value == '')this.value = 'твоята ел. поща';this.parentNode.className = 'newsletter'};
}
});