$(document).ready(function() {
	$('a.btn').wrapInner('<span>');
/*						   
	$('#newnav li').hover(function(){
		$(this).children('ul').show(200);
	 }, function(){
		$(this).children('ul').hide(200);
	 });

*/

/*
$('.top').hover(function() {
	var myFly = $(this).find('.drop');
	$(myFly).css({'visibility' : 'visible'}).show(0);
}, function() {
	var myFly = $(this).find('.drop');
	$(myFly).css({'visibility' : 'hidden' , 'display' : 'none'}).hide(200);
});
$('.one').hover(function() {
	var myFly = $(this).children('.two');
	$(myFly).css({'visibility' : 'visible'}).show(200);
}, function() {
	var myFly = $(this).children('.two');
	$(myFly).css({'visibility' : 'hidden' , 'display' : 'none'}).hide(200);
});

*/




/*Initial news load*/
$('.newsitem').eq(0).animate({'top' : '10px'},800);
$('.newsitem').eq(1).animate({'top' : '56px'},1000);
$('.newsitem').eq(2).animate({'top' : '113px'},1300);
$('.morenews2').css({'display' : 'block' , 'left' : '275px' , 'top' : '-25px' , 'background-image' : 'url(/images/morebtn1.jpg)'});
$('.morenews').css({'display' : 'block' , 'left' : '275px' , 'top' : '-10px' , 'background-image' : 'url(/images/morebtn2.jpg)'});

/*click on more news*/
$('.morenews').click(function() {
$('.newsitem').animate({'top' : '330px'},0);
$('.morenews').css({'display' : 'none'});
$('.morenews2').css({'display' : 'none'});
$('.morenews3').css({'display' : 'block' , 'left' : '275px' , 'top' : '-25px' , 'background-image' : 'url(/images/morebtn1.jpg)'});
$('.morenews1').css({'display' : 'block' , 'left' : '275px' , 'top' : '-10px' , 'background-image' : 'url(/images/morebtn2.jpg)'});
$('.newsitem').eq(3).animate({'top' : '10px'},800);
$('.newsitem').eq(4).animate({'top' : '56px'},1100);
$('.newsitem').eq(5).animate({'top' : '113px'},1400);
});/*done*/

$('.morenews1').click(function() {
$('.newsitem').animate({'top' : '330px'},0);
$('.morenews1').css({'display' : 'none'});
$('.morenews3').css({'display' : 'none'});
$('.morenews').css({'display' : 'block' , 'left' : '275px' , 'top' : '-25px' , 'background-image' : 'url(/images/morebtn1.jpg)'});
$('.morenews2').css({'display' : 'block' , 'left' : '275px' , 'top' : '-10px' , 'background-image' : 'url(/images/morebtn2.jpg)'});
$('.newsitem').eq(6).animate({'top' : '10px'},800);
$('.newsitem').eq(7).animate({'top' : '56px'},1100);
$('.newsitem').eq(8).animate({'top' : '113px'},1400);
}); /*done*/

$('.morenews2').click(function() {
$('.newsitem').animate({'top' : '330px'},0);
$('.morenews').css({'display' : 'none'});
$('.morenews2').css({'display' : 'none'});
$('.morenews1').css({'display' : 'block' , 'left' : '275px' , 'top' : '-25px' , 'background-image' : 'url(/images/morebtn1.jpg)'});
$('.morenews3').css({'display' : 'block' , 'left' : '275px' , 'top' : '-10px' , 'background-image' : 'url(/images/morebtn2.jpg)'});
$('.newsitem').eq(9).animate({'top' : '10px'},800);
$('.newsitem').eq(10).animate({'top' : '58px'},1100);
$('.newsitem').eq(11).animate({'top' : '113px'},1400);
}); /*done*/

/*returns to first 3 entries here 0,1,2*/
$('.morenews3').click(function() {
$('.newsitem').animate({'top' : '330px'},0);
$('.morenews3').css({'display' : 'none'});
$('.morenews1').css({'display' : 'none'});
$('.morenews2').css({'display' : 'block' , 'left' : '275px' , 'top' : '-25px' , 'background-image' : 'url(/images/morebtn1.jpg)'});
$('.morenews').css({'display' : 'block' , 'left' : '275px' , 'top' : '-10px' , 'background-image' : 'url(/images/morebtn2.jpg)'});
$('.newsitem').eq(0).animate({'top' : '10px'},800);
$('.newsitem').eq(1).animate({'top' : '56px'},1100);
$('.newsitem').eq(2).animate({'top' : '113px'},1400);
});






});

