/* INITIALIZE SLIDEDECK */

jQuery('.slidedeck').slidedeck({
	index: false,
	autoPlay: false,
	autoPlayInterval: 5000,
	keys: false,
	cufonRefresh: '.slidedeck dt'
});

/* Some stupid functions to swap out the BG of the the final tab because of the rounded corners */

function changeRelationshipBG(){
	document.getElementById('relationshipSlider').style.background = 'transparent url(img/slideDeck/relationship.jpg) no-repeat top left';
	document.getElementById('relationshipTitle').style.background = 'transparent url(img/slideDeck/spines.gif) no-repeat bottom left';
}

function changeRelationshipBgBack(){
	document.getElementById('relationshipSlider').style.background = 'transparent url(img/slideDeck/relationship-test.png) no-repeat top left';
	document.getElementById('relationshipTitle').style.background = 'transparent url(img/slideDeck/spine-relationship.gif) bottom left';
}