/*
 * WORK HTML to FLASH javascript
 * 
 * 
 * --------
 * Copyright (c) 2009 IMG SRC Inc.
 *
 */
;(function($){
 $.fn.htmlToFlash = function(lang,type){
		
		var relurl = /(.*?\/\/).*?(\/.*)/;
		var path = document.URL;
		
		path = path.match(relurl)[2];
		
		path = path.split('/');
		
		path = jQuery.grep(path, function(ele,index){
							return ( ele != "" )
					});
	
			path[0] = path[0] + "/#";
			path = path.join('/');
		
		path = "/" + path;
		
	 location.href = path;
 }

})(jQuery);
 
/*
$(function(){
	$('body').htmlToFlash();
	//console.log('sdfasd');
});
*/
