jQuery(document).ready(function() {
	jQuery('#nav a:first').addClass('first');
	jQuery('#nav a:last').addClass('last');
	jQuery('#footer-nav li ul li:last-child').css('background', 'none');
    jQuery('#head-nav li:last-child').css('background', 'none');
    jQuery(".post").prepend("<span class='atl'><!--  --></span><span class='atr'><!--  --></span><span class='abl'><!--  --></span><span class='abr'><!--  --></span>");

// Preloading images
	img1= new Image();
	img1.src=stylesheet_directory + "/images/nav_hover.jpg";
	img2= new Image(); 
	img2.src=stylesheet_directory +"/images/nav_left_hover.png";
	img3= new Image();
	img3.src=stylesheet_directory +"/images/nav_right_hover.jpg";

// Post Image Width
    var post_img = jQuery('.post-image img');
      if(post_img)
      {
        for (var i = 0; i<post_img.length;i++)
        {
          if(post_img[i].offsetWidth>200)
          {
              post_img[i].style.width = '200px';
          }
        }
      }



});









