$(function() {
	$('#logo, #prev, #next').ifixpng();
});

$(document).ready(function(){		
	$('#gallery').cycle({ 
		fx:     'fade', 
   		speed:  1000, 
   		timeout: 5000, 
   		next:   '#next', 
   		prev:   '#prev' 
	});
});





$(document).ready(function(){
$('#tabs div').hide(); // Hide all divs
//$('#tabs div:first').show(); // Show the first div
//$('#tabs dl dd:first').addClass('active'); // Set the class of the first link to active
$('#tabs dl dd a').click(function(){ //When any link is clicked
$('#tabs dl dd').removeClass('active'); // Remove active class from all links
$(this).parent().addClass('active'); //Set clicked link class to active
var currentTab = $(this).attr('href'); // Set variable currentTab to value of href attribute of clicked link
$('#tabs div').hide(); // Hide all divs
$(currentTab).show(); // Show div with id equal to variable currentTab
return false;
});
});

