//Variables to set the co-ordinates for an active cellstream cell. 
var csActiveLeftCoor = [0, 75, 164,275];
var csActiveTopCoor = -38;
var csActiveHeight = 247;
var csActiveWidth = 205;
//Variables to set the co-ordinates for a normal cellstream cell. 
var csNormalTopCoor = 0;
var csNormalHeight = 180;
var csNormalWidth = 114;
var csNormalLeftCoor = [2, 126, 250,374];
 $(document).ready(function(){
			
$('#photo_thumbnail-4513209 .photos li.photo').each(function(){
	$(this).find('.author').html($(this).find('.author a'));
	var Val=$(this).find('.img a img').attr('src');
	Val=Val.replace(/5.jpg/i, "6.jpg");
	$(this).find('.img a img').attr('src',Val);
	});			


$('#photo_thumbnail-4513209 .photos li.photo .img a').hover(imageHoverIn,imageHoverOut);	
});

function imageHoverIn()
{
console.log('hello! hovered');
 /*$(this).animate({
                width: csActiveWidth + "px",
                height: csActiveHeight + "px",
                top: csActiveTopCoor + 'px',
                left: csActiveLeftCoor[index] + 'px'
            }, 200, 'swing');*/
}
function imageHoverOut()
{
console.log('hello! hoveredout');
}
