/*
 * My Site Functions
 *
 * - toggle search box input
 *
 */

$(document).ready(function() {
  $('input#keywords').toggleVal();
  
  $.backstretch("http://www.spring-fling.co.uk/filemanager/images/home/backgrounds/bg2.jpg", {speed: 150});
  
  	// open external links in new window (without classes)
	$("a[href*='http://']:not([href*='"+location.hostname+"']),[href*='https://']:not([href*='"+location.hostname+"'])").click(function(){
		window.open(this.href);
		return false;
	}); 
  
});
