var myrules = {
	'#qualitySign a' : function(el){
		el.onmouseover = function(){
			Effect.Pulsate('qualitySign',{duration:1.0, pulses:2});
			return false;
		}
	},
	'#sioLink a' : function(el){
		el.onmouseover = function(){
			Effect.Pulsate('sioLinkImg',{duration:1.0, pulses:2});
			return false;
		}
	},
	'#showMap' : function(el){
		el.onclick = function(){
			//f = window.frames['gmap'];
			d = window;
			f = d.frames ? d.frames['gmap'] : d.getElementById('gmap');
			//p = f.document || f.contentWindow.document;
			
			if($('gmap').style.display == 'none'){
				$('gmap').style.display = 'block';
				//$('contact').style.height='700px'
				f.load();
				p.load();
			}
			else{
				$('gmap').style.display = 'none';
				//$('contact').style.height='460px'
			}
			return false;
		}		
	}
	
};

Behaviour.register(myrules);


