function lnd(el){ ev = event.type; if(ev == 'mouseover'){ //el.style.border = '1px solid rgb(1,51,106)' el.style.paddingLeft = "5px"; el.style.width = "140px"; } if(ev == 'mouseout'){ el.style.paddingLeft = "0px"; el.style.width = "145px"; el.style.border = "1px solid white" el.style.borderTopWidth = '1px' el.style.borderTopStyle = 'dotted' el.style.borderTopColor = 'rgb(1,51,106)' el.style.borderBottomWidth = '1px' el.style.borderBottomStyle = 'dotted' el.style.borderBottomColor = 'rgb(1,51,106)' } } function ur(url){ window.location.href = url; } $.fn.wait = function(time, type) { time = time || 1000; type = type || "fx"; return this.queue(type, function() { var self = this; setTimeout(function() { $(self).dequeue(); }, time); }); }; $(document).ready( function(){ $('.banner').innerfade({ animationtype: 'fade', speed: 'slow', timeout: 4000, type: 'random', containerheight: '116px' }); $('#hotspot').hover( function () { //over $('#foto').fadeIn(); }, function () { $('#foto').fadeOut(); } ); $('#hotspot').click(function(){ window.location.href = '/Album'; }); });