$(document).ready(function() {
	// Empty "Search..." from text box
	$("input[name=words]")
    .val("Search...")
    .css("color", "#ccc")
    .focus(function(){
        $(this).css("color", "#000");
        if ($(this).val() == "Search...") {
            $(this).val("");
        }
    })
    .blur(function(){
        $(this).css("color", "#ccc");
        if ($(this).val() == "") {
            $(this).val("Search...");
        }
    });
    
    // Slideshow on home page
		
	$("#feature").innerfade({
		speed: 1000,
		timeout: 5000,
		type: 'sequence',
		containerheight: '394px'
	});
	
});