﻿// tabbing
$(document).ready(
function() {
	$('#newstab').hide();

	$('#profilebutton').click(function() {
		$('#profilebutton')[0].src = '/app_themes/pandj/images/profile_ov.jpg';
		$('#newsbutton')[0].src = '/app_themes/pandj/images/news.jpg';
		$('#newstab').hide();
		$('#profiletab').show();
	});

	$('#newsbutton').click(function() {
		$('#newsbutton')[0].src = '/app_themes/pandj/images/news_ov.jpg';
		$('#profilebutton')[0].src = '/app_themes/pandj/images/profile.jpg';
		$('#profiletab').hide();
		$('#newstab').show();
	});
}); 
