// JavaScript Document

jQuery(document).ready(function($) {
    
	$('a[href$=png], a[href$=gif], a[href$=jpg], a[href$=jpeg]').lightBox();
	
	$('.post_links a').hover(function(){
		$(this).stop().animate({paddingLeft: "30px"}, 300);
	},function(){
		$(this).stop().animate({paddingLeft: "0px"}, 300);
	});
	
	$("input#s").toggleVal({
		populateFrom: "custom",
    	text: "Blog Search..."
	});
	
});