$(document).ready(function() { 
	
	//xhtml valid target="_blank"
	$("a[href*='http://']:not([href*='"+location.hostname+"'])").click( function() {
	window.open(this.href);
	return false;
	});
	
	// loads uniforms plugin
	$("input, textarea, select, button").uniform();
	
	// Fancy scroll to top
	$('a[href=#top]').click(function(){
        $('html, body').animate({scrollTop:0}, 400);
        return false;
    });
    
    // Adds .first and .last classes to the first & last main navigation items
	$('#main-nav ul li:first-child').addClass( 'first' );
	$('#main-nav ul li:last-child').addClass( 'last' );
	
	// jQuery Cycle inside of homepage.php
    $('.cycletext').cycle({
	fx: 'fade',
	speed:  600,
	timeout: 8000 
	});
	
	// Slider inside of homepage.php
/*
    $('.slideimages').cycle({
	fx: 'scrollLeft',
	speed:  600,
	timeout:  10000 
	});	
*/
	
});


