$j(document).ready(function(){
	//photoGalleryList
	$j(".PhotoGallery_list a").click(function(e){
		
		//$j(".PhotoGallery_tit").html(  $j(this).attr("title")  );
		$j("#window_wrap_photo").fadeTo(1, 0).slideToggle(1).fadeTo("slow", 0.94);
		$j("#window_photo").slideToggle("slow"); 
		var name_id = $j(this).attr("name");
		$j.ajax({
		  //url: "photoGallery_"+$j(this).attr("name")+".html",
		  url: "photoGallery_blank.html",
		  cache: false,
		  success: function(html){
			//$j(".flash_hsbc").html("<div style='width:910px; height:50px; margin-top:200px;color:#ccc; font-size:14px; text-align:center'>Loading...</div>");
			$j("#window_photo .flash_hsbc").html('<iframe src="photoGallery_xml.asp?t='+ name_id +'" scrolling="no" width="935" height="550" frameborder="0"></iframe>'); 
		  }
		}); 

	});




});


