$('.buy').eq(0).on('mouseover', function() {
$('.buy').eq(0).get().src='../pic/buy-hover.png';
})
$(document).ready(function() {
$('#add_theme').click(function() {
$('<div class="ft_inputs">\n' +
'<input type="text" placeholder="Name theme"/>\n' +
'<textarea rows="5" placeholder="Desription theme"></textarea><div class="remove_theme">Delete</div></div>') .
fadeIn('slow').appendTo('.test');
});
$('.test').on('click', '.remove_theme', function() {
$('.ft_inputs', '.test').last().remove();
});
});