﻿$(document).ready(function() {

	$('.slides').after('<ul id="nav" class="navsmall">').cycle({
		fx:     'fade',
		timeout: 7000,
		pager:  '#nav',
		pause: 1,
		
		pagerAnchorBuilder: function(idx, slide) { 
			return '<li><a href="#"></a></li>'; 
		} 
	
	});
	//slideshow homepage
	$("td#MSOZoneCell_WebPartWPQ4 a[href^='/Afbeeldingen']").attr("rel", "slideshow");
	$("td#MSOZoneCell_WebPartWPQ4 a[href^='/Afbeeldingen']").attr("class", "thickbox");
	$("td#MSOZoneCell_WebPartWPQ4 a[href^='/Afbeeldingen']").attr("onclick", "");
	$("td#MSOZoneCell_WebPartWPQ4 a[href^='/Afbeeldingen']:first").attr("id","slideshowfirst");

	initThickbox();

	//loginpagina
	$("#ctl00_m_g_824424c3_67d4_431d_8b87_1f9d66eda976").attr("class", "loginbox");
	$("#ctl00_m_g_824424c3_67d4_431d_8b87_1f9d66eda976 td[colspan!='2']").attr("align", "left");

	//change pass
	$("#ctl00_m_ChangePasswordWebPart1 td[align='right']").attr("align", "left");
	$("#ctl00_m_ChangePasswordWebPart1_ctl00_ChangePasswordContainerID_CancelPushButton").hide();
	$("#ctl00_m_ChangePasswordWebPart1_ctl00_ChangePasswordContainerID_ChangePasswordPushButton").attr('style', 'position:relative;left:430px;');

	if ($("table.zz2_QuickLaunchMenu_4 a[href='/uwportaal/Accountmanagers/Dashboard.aspx']").length > 0 && 
			(window.location == 'http://www.libellahuis.nl/uwportaal/home.aspx' || window.location == 'http://www.libellahuis.nl/uwportaal/Home.aspx') &&
			window.location != 'http://www.libellahuis.nl/uwportaal/Accountmanagers/Dashboard.aspx')
		window.location = '/uwportaal/Accountmanagers/Dashboard.aspx';
});

function randomizeBg(min, max) {
	if (!min)
		min = 0;
	if (!max)
		max = 1;
	return Math.floor(Math.random()*(max+1)+min);
}
function randomBg() {
	var bgs = new Array(); 	
		bgs.push("/Style%20Library/Images/libella_bodybg_01.jpg");
		bgs.push("/Style%20Library/Images/libella_bodybg_02.jpg");
		document.body.style.backgroundImage = "url(" + bgs[randomizeBg(0, bgs.length-1)] + ")";
}
