$(document).ready(init);

function init() {
	$('.faces td').hover(
					 function() {
						 $(this).find("p").slideDown();
					 }
					 ,
					 function() {
						 $(this).find("p").slideUp();
					 }
					 );
	$('.faces td p').hide(); // display p text when image table element hovered over
    
	var iurl = $(".blog-image img").attr("src");
	if (iurl == "/user_resources///") $(".blog-image").hide(); // if image is missing then hide image
    
    ieCSS("/css/ie.css"); // adds extra css for Internet Explorer users only
	$('div.like div').html('&nbsp;');
    $('form input.search').focus(clearOnFocus);
}
function clearOnFocus() {
    if ($(this).hasClass('cleared')) return;
    $(this).val('').addClass('cleared');
}