/**
 * Functions
 */
function inputValue(elm,text) {
   if(jQuery(elm).val() == "")
       jQuery(elm).val(text);
   
   jQuery(elm).focus(
       function() {
           if(jQuery(this).val() == text)
               jQuery(this).val('');
       }
   );
   
   jQuery(elm).blur(
       function() {
           if(jQuery(this).val() == '')
               jQuery(elm).val(text);
       }
   );
}

/**
 * Ready
 */
$(document).ready(
	function() {
		inputValue('#s','search');
	}
);

/**
 * Start
 */
swfobject.embedSWF("http://www.filipesilvestrim.com/blog/wp-content/themes/fsilvestrim/res/swf/header/MainFluid.swf", "featured-content", "940", "140", "10.0", "http://www.filipesilvestrim.com/blog/wp-content/themes/fsilvestrim/res/swf/expressInstall.swf");