$(document).ready(function(){
//链接提示效果
$('a[title]').qtip({
   position: {at: 'bottom center'},
   style:{ tip: {corner:true}}
   });
//淡入淡出型幻灯
$('.photo').innerfade({
		speed: 'slow',
		timeout: 6000,
		type: 'sequence',
		containerheight: '220px'
	});	
});

