$(document).ready(function($) {
	
	$('.text-area').mouseenter(function() {
	$(this).children('.tab').animate({
		'margin-left':  '-45px'
	}, { "duration": "fast"}, function() {
	});
	});

	$('.text-area').mouseleave(function() {
	$(this).children('.tab').animate({
		'margin-left':  '-40px'
	}, { "duration": "fast"}, function() {
	});
	});
	
	$('a[rel*=facebox]').facebox();

});
 


