$(document).ready(function() {
//SWAP VALUES
    swapValues = [];
    $(".swap").each(function(i){
        swapValues[i] = $(this).val();
        $(this).focus(function(){
            if ($(this).val() == swapValues[i]) {
                $(this).val("");
				$(this).css('color','black');
            }
        }).blur(function(){
            if ($.trim($(this).val()) == "") {
                $(this).val(swapValues[i]);
				$(this).css('color','#ccc');
            }
        });
    });


		
var lineHeight = parseInt( $(".post h1 a").css("lineHeight"), 10 );
$(".post h1 a").each(function() {
var linesNbr = $(this).height() / lineHeight;
$(this).addClass("lines" + linesNbr).next().append(linesNbr);
});	
			
		
			
		

	
});

