$(document).ready(function() {
$('img.EnlargeMe').toggle(function(){
var OldWidth = this.width;
var OldHeight = this.height;
var NewWidth = OldWidth*2;
var NewHeight = OldHeight*2;
$(this).animate({height: NewHeight, width: NewWidth}, 'slow');
},function(){
var OldWidth = this.width;
var OldHeight = this.height;
var NewWidth = OldWidth/2;
var NewHeight = OldHeight/2;
$(this).animate({height: NewHeight, width: NewWidth}, 'slow');
});
$('span.NewsTitle').click(function(){
var ID = this.id;
var ToSlide = "DIV"+ID;
$('#'+ToSlide).slideDown('slow');
});
$('span.Close').click(function(){
var ID = this.id;
var ToSlide = "DIVCell"+ID;
$('#'+ToSlide).slideUp('slow');
});
$('.NewsTitle').hover(function(){
$(this).addClass('NewsTitle2');
}, function(){
$('.NewsTitle').removeClass('NewsTitle2');
});
});
