$(document).ready(function() {
	
	// clear input on focus
	$('input').focus(function() { this.value = ''; });
	
	$(".rounded-img, .rounded-img2").load(function() {
		$(this).wrap(function(){
			return '<span class="' + $(this).attr('class') + '" style="background:url(' + $(this).attr('src') + ') no-repeat center center; width: ' + $(this).width() + 'px; height: ' + $(this).height() + 'px;" />';
		});
		$(this).css("opacity","0");
	});
	
	// social share button
	var share_container = $('#social-share');
	
	share_container.css({ width:'29px' });
	
	share_container.hover(
		function() {
			share_container.dequeue().animate({ width:'242px', left:'-242px' });
		},
		function() {
			share_container.dequeue().animate({ width:'29px', left:'-29px' });
		}
	);
});
