var userAgent = navigator.userAgent;
var search = userAgent.search("MSIE");

// if its IE, do not use the script
if (search != -1) {
	$(function() {
		$("img").css("visibility", "visible");
	});
}



// if its IE, do use the script
else {
	$(function() {
		$("#main, #posts, #similar-vibe").preloader();
		update();
	});
}
