		window.addEvent('domready', function(){

		$$('div[rel=hover]').addEvents({
			'mouseup': function(){ 
				this.setStyle('cursor', ''); 
				this.setStyle('background-position', 'top left'); 
				$E('div#bireysel-overlay').setStyle('display', 'block')
				
				
			},
			'mousedown': function(){ 
				this.setStyle('cursor', 'none'); 
				$E('div#bireysel-overlay').setStyle('display', 'block')
				
			},
			'mouseleave': function(){ 
				this.setStyle('background-position', 'bottom left');
				$E('h3', this).setStyle('font-weight', 'bold')
			},
			'mouseenter': function(){ 
				this.setStyle('cursor', 'pointer'); 
				this.setStyle('background-position', 'top left'); 
				$E('h3', this).setStyle('font-weight', 'bold')
			}
		});
		
		
		
		
});