jQuery(document).ready(function() {
	
	$('body').addClass('js');
	
	$('#logo,.wrapper,#footer,.shadow-top,.shadow-btm').ifixpng();

	$('#nav li, ul.files li').hover(
	  function () {
		$(this).addClass("over"); /* .hide().fadeIn() */
	  },
	  function () {
		$(this).removeClass("over");
	  }
	);

	$('#header').cycle({ 
		fx: 'fade',
		speed: 2500,
		timeout: 4500,
		pause: 1
	 });
	
	$('.sideimages').cycle({ 
		fx: 'fade',
		speed: 2500,
		timeout: 11250,
		pause: 1
	 });
	
	$('A[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });

});

