Checking volumes?

Hi…
I have a question. Ahh!!
Well, you see, I´d like to have a script that allways check if the network volume “Music” is mounted and functioning (that the server has not gone down / the server has not freezed).
And I´d like to have it automatically started if the computer is turned on. And the script should test this every 2nd minute.
Does anyone know how to do this? Is it difficult? Sorry to say, but I am a novice on Applescript.
Kind regards

You can start off with something like this:

tell application "Finder"
	if disk "My Disk" exists then
		-- do something neat
	else
		-- do something else
	end if
end tell

For scheduling, I recommend iDo Script Scheduler. Find a link to it under “Scripting Tools” here at MacScripter.net
Hope this gets you on your way!