$(document).ready(function(){
		
	// first example
	$("#navigation").treeview({
		persist: "location",
		collapsed: true,
		unique: true
	});
	 $(".giftconntent a").click(function()
	   {
	      //var id=this.rel.split(':')[1];
	      var title=this.rel.split(':')[1];
	      //var description=this.rel.split(':')[3];
	      var img=this.rel.split(':')[3];
	      $("#gift_title").html(title);
    	  //$("#gift_discription").html(description);
	      //load();
		  $("#gift_img img").attr({'src':img});
	      //pgload();
	   });
	 jQuery('#mycarousel').jcarousel();
	 
  
});