$(document).ready(function() {
	$("#sidebar #sidemenu").corner("left round 10px");
	$("#plate").corner("round 10px");

	
	
	$('div.block2').hover(function(){
		$('div.zoom_in').remove()
		var w =	$(this).children('a').children('span').children('img').css("width")
		if(w.substring(0,w.indexOf('px'))>=189){w=189+'px'}
		
		$(this).children('a').children('span').children('img').after('<div class="zoom_in" style="width:'+189+'"></div>');
	})	
	
	
});



