$(document).ready(function(){
	
	
	$("#baner #searcher input:text").focus(function(){
		$(this).attr("value","");
		})
		
		
	$("#right div.Gallery .image img").hover(
		function(){
			$(this).css({
				'border-color': '#000000',
				'border-width': '2px',
				'width' : '58px',
				'height' : '43px'
			})
		},
		function(){
			$(this).css({
				'border-color': '#cf7e4f',
				'border-width': '1px',
				'width' : '60px',
				'height' : '45px'
			})
		}
	
	)	
		
		
		
		
		
	})
