jQuery(document).ready(function($) {		

var sidebarHeight
var navShadowsStatic = {
  x:      1, 
  y:      1, 
  radius: 1,
  color:  "#2E0009"
}
var navShadowsOver = {
  x:      0, 
  y:      0, 
  radius: 6,
  color:  "#ffffff"
}
var sidebarShadows = {
  x:      1, 
  y:      1, 
  radius: 1,
  color:  "#FF9999"
}		
  $("nav#access .menu ul li a").textShadow(navShadowsStatic);
  $("#sidebar li h3").textShadow(sidebarShadows);
  $("li.current_page_item a").textShadow(navShadowsOver);
  






	sidebarHeight = $('#contentLeft').height();
	if ($('body').is('.page')|| $('body').is('.single')) {
	$('#sidebar').height(sidebarHeight + 18);	
	$('#sidebar').height(sidebarHeight + 18);	
	}else{
	$('#sidebar').height(sidebarHeight - 16);			
	$('#sidebar').height(sidebarHeight - 16);				
	}
	

  $('.blogRSS').hide();
  
$('#showRSS').click(function() {

  $('.blogRSS').toggle();



});
  
  
  
});

