function reloadIt()
	{

		var d = new Date();
		var mili = d.getTime();

		frm=document.getElementById("webcam_frame");
		frm.src="http://webcam.vbfun.com/mjpg/video.swf?i=" + mili;
		setTimeout("reloadIt()",30000);
	}

$(document).ready(function() {

	if (navigator.appVersion.indexOf('MSIE')>0){

		$("#webcam_frame").css("opacity", "0");

		// webcam_frame
		$("#shoutout").delay("3000").animate({opacity: 0}, 400, function(){
			$("#webcam_frame").delay("500").css("display", "block").animate({
opacity: 1}, 400, function(){ reloadIt(); });

		});

	} else {
		$("#webcam_frame").remove();

		$("#shoutout").delay("3000").animate({opacity: 0}, 400, function(){
			$("#webcam_mjpg").html("<img src='http://webcam.vbfun.com/mjpg/video.mjpg' style='width: 335px; height: 247px;' />").delay

("500").css("display", "block").animate({ opacity: 1}, 400);
		});
	}

});

