You should really use code brackets when pasting code, it makes it a lot easier to read.
I had to make two changes to make that work, the first was changing the line...
// The function surroundCelciusToFahreheit doesn't even exist.
JOptionPane.showMessageDialog( null, you.surroundCelciusToFahreheit());
To.
JOptionPane.showMessageDialog( null, you.surroundConvertTemperature());
The next one isn't so obvious. You had declared a local variable by the same name of a member variable in the CelciusToFahrenheit class constructor. Don't do that, because anything you do with the variable declared locally will only change the local variable, and not the data member. So just remove the following line from that constructor...
double fahrenheit;
And after that it should work fine.
-Fredric