$(function() {
//	$('.my-colours-info').mouseover(function() {
//		var colour = $(this);
//		colour.children().eq(1).hide();
//		colour.children().eq(2).show();			
//	});
//	
//	$('.my-colours-info').mouseout(function() {
//		var colour = $(this);
//		colour.children().eq(1).show();
//		colour.children().eq(2).hide();			
//	});	
	
	$('.my-colours-info .my-colours-info-close').click(function() {
		var colour = $(this).parent().parent().parent();
		var colourId = colour.attr('id').substring(16);	
		
		$.getJSON('my-colours-remove.php', {'colour': colourId}, function(data) {			
			if (data.success == true) {
				location.reload(true);
			}			
		});	

		return false;			
	});	
});
