jQuery(document).ready(function($) {
	
	$('ul.blogroll').makeacolumnlists({cols:2,colWidth:140,equalHeight:false,startN:1});
	$('#footer .right ul li:first').css({"background":"none"});
	$('ol.commentlist li:last').css({"background":"none"});
	
	$('#s').focus(function() {
			if($(this).attr("value") == "search...") { $(this).attr("value",""); }
		});
		$('#s').blur(function() {
			if($(this).attr("value") == "") { $(this).attr("value","search..."); }
		});
	
	$('#sidebar .email').focus(function() {
			if($(this).attr("value") == "enter email...") { $(this).attr("value",""); }
		});
		$('#sidebar .email').blur(function() {
			if($(this).attr("value") == "") { $(this).attr("value","enter email..."); }
		});
		
		jQuery('#header a.logo_blog').addClass('active');
	
	
	var featuresectiontoshow = "";
	$('.featuredbook_box_entry a').click(function() {
		featuresectiontoshow = "";
		$('.section').hide();
		featuresectiontoshow = $(this).attr('href');
		$('h2'+featuresectiontoshow).parent('.section').show();
		return false;
	});
	
})
