$(function() {

if ((screen.width>=800) && (screen.height>=600)) {
	//alert('Screen size: 800x600 or larger');
	$('#news-container').hide();
	$('#news-container').delay(500).fadeIn(500);
	$("link[rel=stylesheet]:not(:first)").attr({href : ""});
	$('.news-item p').eq(0).css({height: '40px', overflow: 'hidden'});
	$('#news-container').hover(function() {
		$('#news-feed').stop(true, false).animate({
			height: $(document).height() - 165
		}, 500, function() {
			$('#news-feed').css('overflow-y', 'scroll');
		});
		$('.news-item p').eq(0).css({height: '100%', overflow: 'visible'});
		$('.more-news span').hide();
	}, function() {
		$('#news-feed').scrollTop(0);
		$('#news-feed').stop(true, false).animate({
			height: '115px'
		}, 500, function() {
			$('#news-feed').css('overflow-y', 'hidden');
			$('.news-item p').eq(0).css({height: '40px', overflow: 'hidden'});
		});
		$('.more-news span').show();
	});
} else {
	//alert('Screen size: less than 800');
	//$('link[rel=stylesheet]:not(:first)').attr({href : 'mobile.css'});
}

$('#menu a').removeClass('current');
$('#menu a').eq(0).addClass('current');

});






