$(function() {
	
	// bilder auf der wohnungsseite
	$('a.img').hover(function(){
		var src=$(this).attr("href");
		var title=$(this).attr("title");
		$('.wohnungimg img').attr({src: src, title: title, alt: title});
		$('.wohnungimg span').html(title);	
	}).click(function(e) {
		e.preventDefault();
		var i=new Image();
		var href=$(this).attr("href");
		i.src=href;
		var w=i.width,h=i.height;
		var win = window.open(href, "", 'titlebar=yes, status=yes, resizable=yes, toolbar=no, scrollbars=no, menubar=no, width='+ w +', height='+ h);
		win.focus();
	});
	
});
