$(document).ready(function() { 
	
	//xhtml valid target="_blank"
	$("a[href*='http://']:not([href*='"+location.hostname+"'])").click( function() {
	window.open(this.href);
	return false;
	});
	
	// remove default of form values on focus
	window.onload=function(){
	for(var i=0,inp=document.getElementsByTagName('input');i<inp.length;i++)
	{if(inp[i].type=='text'){inp[i].onfocus=function(){
	this.value='';}}}}
	
	// 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' );
	
	// Adds .first and .last classes to the first & last side navigation items
	$('#sidebar ul li:first-child').addClass( 'first' );
	$('#sidebar ul li:last-child').addClass( 'last' );
});
