// Attach events
$(document).ready(function() {

	// Handle the popups
	$('#products > div.product div.target').mouseenter(function(e) {
		$(this).parent().find('div.actions').fadeIn('fast')
	});
	$('#products > div').mouseleave(function(e) {
		$(this).find('div.actions').fadeOut('slow');
	});
});

