function searchTrigger(){
	var value = $(".searchbox").attr('value');
	value = value.replace(/ /g,'+');
	top.location.href = '/search/'+value;
}

$(document).ready(function(){

	// Turn off intro header
	$("#intro h1").css("display", "none");
	
	// Search
	$("#btn").click(function(){
		searchTrigger();
	});
	
	// Thumbnails transparency
	$(".flickr .content li img").fadeTo("fast", "0.4");
	
	$(".flickr .content li img").mouseout(function(){
		$(this).fadeTo("slow", "0.4");
	});
	
	$(".flickr .content li img").mouseover(function(){
		$(this).fadeTo("fast", "1");
	});
	
	$(".emailreqtxt").html("(*)");
	$(".reqtxt").html("(*)");
		
});