$(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 .last classes to the last main navigation items
	$('.menu-header ul li:last-child').addClass( 'last' );
	
	// Adds .last classes to the last side navigation items
	$('#menu-side-nav li:last-child').addClass( 'last' );
	
	// Adds .last classes to the last blog list items
	$('#blog-excerpt li:last-child').addClass( 'last' );
	
	//Homepage Slider
    $('#slideshow').cycle({
    width: 960,
    height: 310,
    fit: 1,
    fx: 'fade',
    speed: 300, 
    timeout: 6000,
	});	
	
	// Homepage slider
    $('#slideshow').after('<div class="slide-nav">').cycle({
        width: 960,
        height: 310,
        fit: 1,
        fx: 'scrollLeft',
        pause: 1,
        speed:   1000, 
        timeout: 6000,
        pager: '.slide-nav',
    });			
	
});


