$(document).ready(function(){
	$(".imageElement").fadeIn("fast");
	$(".menu").children("li").each(function(){
		if($(this).find("span").html() == "Webshop"){
			$(this).find("span").css({
				"color":"#070707"
			});
			$(this).find("span").append(" <img src='css/cart.png' style='width: 15px; margin: -6px 0 0 0;' />");
		}
	});
});
