$(document).ready(function() {
	$("div[mybuyszone]").mouseover(function(event) {
		// Retrieve our list source from the div
		var linkSource = $(this).attr("id").replace(/-(\w)/, function(s, group1) {
			return group1.toUpperCase();
		});
		
		// Append the source to the myBuys links
		$("a", this).each(function() {
			var currHref = $(this).attr("href");
			$(this).attr("href", currHref += (currHref.indexOf('?') == -1 ? '?src=' : '&src=') + linkSource);
		});
		
		// Remove the binding after this has ran
		$(this).unbind("mouseover");
	});
});
