$(function(){
	$('.block').corner('10px');
	
	$('#content > #floor').hover(function(){
		$(this).css({'border-color':'#ffd064'});
		$(this).corner('10px');},
	function(){
		$(this).css({'border-color':'#e8e8e8'});
		$(this).corner('10px');
	});
	$('#content > #keram').hover(function(){
		$(this).css({'border-color':'#78c378'});
		$(this).corner('10px');},
	function(){
		$(this).css({'border-color':'#e8e8e8'});
		$(this).corner('10px');
	});

	$('#content > #paint').hover(function(){
		$(this).css({'border-color':'#6e96fa'});
		$(this).corner('10px');},
	function(){
		$(this).css({'border-color':'#e8e8e8'});
		$(this).corner('10px');
	});
	
	$('#feedback').overlay();
	
	
	$('li.cor').corner('10px');
		$('li.cor').hover(function(){
		$(this).css({'border-color':'#78c378'}); 
		$(this).corner('10px');},
	function(){
		$(this).css({'border-color':'#e8e8e8'});
		$(this).corner('10px');
	});
});

