jQuery(document).ready(function() {
	
	$('body').addClass('js');
	
	$.ifixpng('img/pixel.gif');
	$('#logo,#content').ifixpng();
	
	$('#images').hide();
	
	$('#images').fadeIn(1000);
	
	$('#images').cycle({ 
		speed: 2500,
		timeout: 4500,
		pause: 1
	 });
	 
	$('#top,.anchor').localScroll({
		target:'#scroll',
		duration: 500
	});
	
	$('A[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });

});


