Gtk Rc problem

HI, I’ve been doing the gtk2.0 tutorial and I have skipped ahead to the rc file part. I am trying to put a picture onto a button. my file looks something like this…

 
pixmap_path "..\\..\\"
 
style "button"
{
     bg_pixmap[NORMAL]="fare.bmp"
}
 
widget_class "*GtkButton*" style "button"

I can use bg_pixmap to put a picture in the background of the window, but it doesn’t work to do it for a button, does anyone know how I could do this? (note: I need to use “…\…\” because I am in windows, so it needs backslashes") thanks…