function swapImagesVictim(){
  var $active = $('#victim .active');
  var $next = ($('#victim .active').next().length > 0) ? $('#victim .active').next() : $('#victim img:first');
  $next.fadeIn().addClass('active');
  $active.fadeOut(function(){
    $active.removeClass('active');
  });
}

function swapImagesKiller(){
  var $active = $('#killer .active');
  var $next = ($('#killer .active').next().length > 0) ? $('#killer .active').next() : $('#killer img:first');
  $next.fadeIn().addClass('active');
  $active.fadeOut(function(){
    $active.removeClass('active');
  });
}



// PageFlip jQuery
$(document).ready(function(){

//Page Flip on hover

	$("#pageflip").hover(function() {
		$("#pageflip img , .msg_block").stop()
			.animate({
				width: '130px', 
				height: '130px'
			}, 500); 
		} , function() {
		$("#pageflip img , .msg_block").stop() 
			.animate({
				width: '45px', 
				height: '45px'
			}, 200);
	});
	
	$("#pageflip2").hover(function() {
		$("#pageflip2 img , .msg_block2").stop()
			.animate({
				width: '130px', 
				height: '130px'
			}, 500); 
		} , function() {
		$("#pageflip2 img , .msg_block2").stop() 
			.animate({
				width: '45px', 
				height: '45px'
			}, 200);
	});
	
	
	setInterval('swapImagesVictim()', 10000);
	setInterval('swapImagesKiller()', 10000);

	
});

