$(document).ready(function(){
//链接提示效果
$('a[title]').qtip({
   position: {at: 'bottom center'},
   style:{ tip: {corner:true}}
   });	
   
//淡入淡出型幻灯
$('.photo').innerfade({
		speed: 'slow',
		timeout: 6000,
		type: 'sequence',
		containerheight: '220px'
	});	
	
//弹出窗口，透明度为0.65
$("a[rel='box']").colorbox({opacity:0.65});
$(".iframe").colorbox({iframe:true, innerWidth:580, innerHeight:420});


});

