#!/usr/bin/python
############
# Load_Sound.py 
# This simple snipt is used to load 
# and play the JUNGLE.wav file 
############ 

# Import necessary modules
import os, pygame
from pygame.locals import *

pygame.init()

sound1 = pygame.mixer.Sound('JUNGLE.wav')
sound1.play()
while 1: pass 