// JavaScript Document
$(document).ready(function() {
	$('input[name="keywords"]').hover(function() {
		message = $(this).attr('title');
		$(this).parent().append('<div style="position: absolute; margin-top: 36px; height: 20px; line-height: 20px; color: #000; padding: 3px; !important; background: #fff; border: 1px solid #000; z-index: 999; width: 410px;" id="foo">Enter keywords such as Ebony, Brass, Luxury, Triple weighted...</div>');
	}, function() {
		$(this).parent().find('#foo').fadeOut('fast');
	});
});
