
$(document).ready(function(){
$('ul.tabNav a').click(function() {
var curChildIndex = $(this).parent().prevAll().length + 1;
$(this).parent().parent().children('.current').removeClass('current');
$(this).parent().addClass('current');
$(this).parent().parent().next('.tabContainer').children('.current').slideUp('fast',function() {
$(this).removeClass('current');
$(this).parent().children('div:nth-child('+curChildIndex+')').slideDown('normal',function() {
$(this).addClass('current');
});
});
return false;								
});
});


$(document).ready(
function (){
$("#pikame").PikaChoose();
});


$(document).ready(function() {
$("#gallery_output img").not(":first").hide();
$("#gallery a").click(function() {
if ( $("#" + this.rel).is(":hidden") ) {
$("#gallery_output img").slideUp();
$("#" + this.rel).slideDown();
}
});
});

			
$(function()
			{
				// this initialises the demo scollpanes on the page.
				$('#pane1').jScrollPane();
				
			});
			
