// JavaScript Document

 jQuery(document).ready(function($) {
	
	Cufon.replace('div.content-element', {hover: true});
	
	Cufon.replace('#nav a', {hover: true});
	
	
								 
	 $('#RIGHT li').mouseenter(function() {
		var currentId = $(this).attr('id');
		changeBgImages(currentId);
	  });
	
});
 
 function thisMovie(movieName) {
                 if (navigator.appName.indexOf("Microsoft") != -1) {
                     return window[movieName];
                 } else {
                     return document[movieName];
                 }
             }
             function changeBgImages(value) {
				 //alert(img_arr[5]);
                 thisMovie("bgimages_flash").changeBackgroundImage(img_arr[value]);
             }
			 function changeBgImagesInit(value) {
				 
                 thisMovie("bgimages_flash").changeBackgroundImage(value);
             }

