$(document).ready(function() {

	$("div.captcha br").remove();
	
	$("div.search-and-languages form input").focus(function() {
	
		var thisLabel = $(this).prev();
		thisLabel.toggle();
		
		$(this).css("width", "170px");
	
	});
	
	$("div.search-and-languages form input").blur(function() {

		$("div.search-and-languages form label").toggle();
	
		$(this).css("width", "100px");
		thisLabel.toggle();
	
	});
	

	$("p.figure img, .gallery-item p a img").each(function() {
		
		$(this).wrap('<span class="roundify" />');
		
		var htmlSpanTL = '<span class="roundify-img-tl roundify-10"></span>';
		var htmlSpanTR = '<span class="roundify-img-tr roundify-10"></span>';
		var htmlSpanBL = '<span class="roundify-img-bl roundify-10"></span>';
		var htmlSpanBR = '<span class="roundify-img-br roundify-10"></span>';
	
		$(this)
		.parent()
		.append(htmlSpanTR)
		.append(htmlSpanTL);


	});	
	
});
