// JavaScript Document
$(function(){  
  
	//case show link bg is opacity
  $(".caselink").animate({opacity:0.5}, 0); 
 
	//show index page case first image 
	showImg("http://demo.jooau.com/jooau/test/images/p1.jpg");
});

function showImg(src) { 
	var $img = $("#myImgs");
	$img.loadthumb({
		"src": src ,
		"imgId":"myImgs",
		"parentId":"CRviewer"
	});
}