$(document).ready( function() {
	$("div#praiseScroller,div#lodScroller").scrollable({ 
        vertical: true,
		size: 1,
        interval: 5000, 
        loop: true,  
        speed: 1600,
        onBeforeSeek: function() { 
            this.getItems().fadeTo(800, 0.2);         
        }, 
        onSeek: function() { 
            this.getItems().fadeTo(800, 1); 
        } 
    });
	$("div#killerappCovers").scrollable({ 
        vertical: true,
		size: 1,
        interval: 3000, 
        loop: true,  
        speed: 1600
    });
	
	$('#sidebar').corners("8px bottom-left");
	$('#lawsTable').corners("8px");
	
		var tsmconfig = {sensitivity:3, interval:200, over:movetsm, timeout:500, out:resetbooks};	
		$("#tsm").hoverIntent(tsmconfig);

		var lodconfig = {sensitivity:3, interval:200, over:movelod, timeout:500, out:resetbooks};	
		$("#lod").hoverIntent(lodconfig);
		
		var killerappconfig = {sensitivity:3, interval:200, over:movekillerapp, timeout:500, out:resetbooks};	
		$("#killerapp").hoverIntent(killerappconfig);
});

function movetsm() {
		$("#tsm").find('img').stop();
		$("#tsm").find('img').animate( {
			marginTop : '10px',
			marginLeft : '10px',
			top : '0',
			left : '-60px',
			width : '150px',
			height : '225px'
		}, 800);
		$('#lod').find('img').animate( {
			top : '0',
			left : '-30px'
		}, 800);
		$('#killerapp').find('img').animate( {
			top : '0',
			left : '-30px'
		}, 800);
	}

	function movelod() {
			$("#lod").find('img').stop();
			$("#lod").find('img').animate( {
				marginTop : '10px',
				marginLeft : '10px',
				top : '0',
				left : '-20px',
				width : '168px',
				height : '254px', 
				padding : '10px'
			}, 800);
			$('#tsm').find('img').animate( {
				top : '0',
				left : '-30px'
			}, 800);
	}

	function movekillerapp() {
		$("#killerapp").find('img').stop();
		$("#killerapp").find('img').animate( {
			marginTop : '10px',
			marginLeft : '10px',
			top : '10px',
			left : '0',
			width : '145px', 
			height : '225px'
		}, 800);
		$('#tsm').find('img').animate( {
			top : '0',
			left : '-20px'
		}, 800);
		$('#lod').find('img').animate( {
			top : '0',
			left : '-20px'
		}, 800);
	}

	function resetbooks() {
	
	$('#killerapp').find('img').animate( {
		marginTop : '0px',
		marginLeft : '0px',
		top : '0',
		left : '0',
		width : '117px', 
		height : '180px'
	}, 400);
	$('#tsm').find('img').animate( {
		marginTop : '0px',
		marginLeft : '0px',
		top : '0',
		left : '0',
		width : '117px',
		height : '180px'
	}, 400);
	$('#lod').find('img').animate( {
		marginTop : '0px',
		marginLeft : '0px',
		top : '0',
		left : '0',
		width : '160px',
		height : '242px' 
	}, 400);
	}