$.each($("#front_images a"), function (i,item) {
	var msg = "About this photo";
	var search = $(item).attr("href").toLowerCase();
	if (search.search("istockphoto.com") > 0) {
		msg = "Buy on iStockphoto";
	}
	else if (search.search("flickr.com") > 0) {
		msg = "View on Flickr";
	}
	$("<div/>", {
    	"class": "buyme",
		"css" : {
		},
        html: "<img src='/wp-content/themes/richlegg/images/camera.png' style='width: 25px; height:24px; border: 0; background: none; position: relative; top: 5px; padding-right: 5px;'/>" + msg
	 }).appendTo($(item));

});

if ($("#front_images img").size() > 1) {
    $("#front_images").css({ "background" : "none"});
}

//$("#front").live("mouseover mouseout", showLink );

function showLink(event) {
	if (event.type == 'mouseover') {
    	$(".buyme").fadeIn("slow");
   	} else {
		if ($(event.target).is(".buyme") ) {
			return false;
		}
        $(".buyme").fadeOut("slow");
    }
}


