$(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' );
	$('#home-blog ul li:last-child').addClass( 'last' );
	
    $('.slider').after('<div class="slide-nav">').cycle({
        width: 660,
        height: 310,
        fit: 1,
        fx: 'scrollLeft',
        speed:   1000, 
        timeout: 6000,
        pause: true,
        pager: '.slide-nav',
    });	
	
});


