$(document).ready(function() {
	$("#menu > li")
		.has("ul")
			.children("a")
				.css("display", "block")
				.append('<img src="http://www.krs.co.za/images/menu/arrow.gif" alt="" />');

	$('#menu > li').hover(function(){
		$(this).children("a").addClass('hover');
		$(this).find("ul").css("display", "block");
		
	}, function() {
		$(this).children("a").removeClass('hover');
		$(this).find("ul").delay(3000).css("display", "none");
	});
	
	$("a[href^='http://']:not([href*='krs.co.za'])").attr("target", "_blank")
	$("img[src$='call-us.jpg']").wrap("<a href='mailto:enquiries@krs.co.za' />")
	
});
