$(function () {
$("#feature-control").jFlow({
slides: "#feature-block",
controller: ".control",
auto: true,
width: "600px",
height: "250px",
duration: 200,
prev: ".jFlowPrev",
next: ".jFlowNext"
});
});

$(function () {
$('#top-menu li').hover(
function () {$('ul', this).fadeIn(600);}, 
function () {$('ul', this).fadeOut(600);
});
});

$(function () {
$('.fade').hover(
function() {$(this).fadeTo("fast", 0.8);},
function() {$(this).fadeTo("fast", 1);
});
});

$(function () {
$('input[title], textarea[title]').each(function() {if($(this).val() === '') {$(this).val($(this).attr('title'));}
$(this).focus(function() {if($(this).val() == $(this).attr('title')) {$(this).val('').addClass('focused');	}
});
$(this).blur(function() {if($(this).val() === '') {$(this).val($(this).attr('title')).removeClass('focused');}
});
});
});
