function init() { 
	    // quit if this function has already been called 
	    if (arguments.callee.done) return; 
	      
	    // flag this function so we don't do the same thing twice 
	    arguments.callee.done = true; 
	  
	    // preload images 
	    preload([ 
	    'img/actors2.png', 
            'img/download2.png',
            'img/episode2.png',
            'img/gallery2.png',
            'img/news2.png',
            'img/serial2.png',
	    'img/trailers2.png'
            'img/soundtrack2.png'
	    ]); 
	  
	   }; 
	  
	/* for Mozilla */ 
	if (document.addEventListener) 
	{ 
	    document.addEventListener("DOMContentLoaded", init, false); 
	} 
	  
	/* for Internet Explorer */ 
	/*@cc_on @*/ 
	/*@if (@_win32) 
	    document.write("<script defer src=js/ie_onload.js><"+"/script<"); 
	/*@end @*/ 
	  
	/* for other browsers */ 
	window.onload = init; 
	  
	function preload(images) { 
	    if (typeof document.body == "undefined") return; 
	    try { 
	  
	        var div = document.createElement("div"); 
	        var s = div.style; 
	            s.position = "absolute"; 
	        s.top = s.left = 0; 
	        s.visibility = "hidden"; 
	        document.body.appendChild(div); 
	        div.innerHTML = "<img src=\"" + images.join("\" /><img src=\"") + "\" />"; 
	     } 
	     catch(e) { 
	        // Error. Do nothing. 
	    } 
	} 
