$("<div/>").attr({id: 'link_place', style: 'float: right; min-height: 180px; z-index: 199 !important'}).prependTo($("#hd"));
window.cur_idx = -1;
var img = Image();
for (i = 0; i < window.link_p_imgs.length; i++) {
	img.src = window.link_p_imgs[i];
}
next_p = function() {
	next_idx = Math.floor(Math.random() * window.link_p_imgs.length);
	while (window.link_p_imgs.length > 1 && next_idx == window.cur_idx) {
		next_idx = Math.floor(Math.random() * window.link_p_imgs.length);
	}
	window.cur_idx = next_idx;
	return window.cur_idx;
}
i = next_p();
$("<a/>").attr({
	href: window.link_p_links[i], 
	id: "link_p_link"
	}).appendTo($("#link_place"));
$("<img/>").attr({
	src: window.link_p_imgs[i], 
	id: "link_p_img"
	}).appendTo($("#link_p_link"));
window.setInterval(function() {
	jQuery("#link_p_img").fadeOut(300);
	window.setTimeout(function() {
		i = next_p();
		jQuery("#link_p_link").attr("href", window.link_p_links[i]);
		jQuery("#link_p_img").attr("src", window.link_p_imgs[i]);
		jQuery("#link_p_img").fadeIn(400);
	}, 300);
}, 30000);
