//highlight selected page
function highlightPage(linum){
	$('#navItems li a').eq(linum).css({
	'background-color':'#AAA',
	'color': '#FFF',
	'border-radius': '5px'})
}

//jQuery ready	
$(function(){

	//apply newWindow class to list links
	$('.pic_table a').attr('class', 'newWindow');
	$('.list_table a').attr('class', 'newWindow');
	$('#chatsDiv a').attr('class', 'newWindow');
	
	
	//open links in a new window
	$('.newWindow').click(function(){
		window.open(this.href);
		return false;
	});
	

}); //end of ready


