// Keyword search auto fill
$(document).ready(function(){
	$('input#keyword').example(function(){
		return $(this).attr('title');
		className: 'not_example';
	})
});

// Select a random image and display it
$(document).ready(function(){
	var myImages = new Array();
	myImages[0] = '<img src="/images/feature1.jpg" alt="its all about who you know">';
	myImages[1] = '<img src="/images/feature2.jpg" alt="creating opportunities">';
	myImages[2] = '<img src="/images/feature3.jpg" alt="meet the team building the future">';

	var myRandom = Math.floor(Math.random()*myImages.length);
	$('#feature').html(myImages[myRandom]);
}); 