/*
			description: wallpaper scripts
			- wall_paper_docoument_ready(): to be run at document open.
			
			  
*/

function  wall_paper_document_ready(ratio){
	/*
			description: to be run at document open.
			parameters:  ratio :the ratio of the wallpaper image 
			response:    
			globals: 
			functions: wall_paper_resize(ratio)
			             
	*/
	
	wall_paper_resize(ratio);	
	$(window).bind('resize', function() {wall_paper_resize(ratio);});
}//end function// JavaScript Document
