jQuery().ready(function(){
		jQuery('#ref-list').accordion({autoheight: false}); 
		jQuery('a[rel^="fancybox"]').fancybox({'titleShow': false});
		
		jQuery(".pl_links").mouseover(
			function () {
				var id = jQuery(this).attr('id');
				id = id.split('_');
				id = id[1];
				//console.log(id);
				jQuery("#change_banner").removeClass('chb1 chb2 chb3 chb4').addClass('chb'+id);
			}
		);
		jQuery(".pl_links").mouseout(
			function () {
				jQuery("#change_banner").removeClass('chb1 chb2 chb3 chb4');
			}
		);
	}
);