/**
 * @author Bangthemes.com
 */

function bookmark(url,title){
  if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
  window.external.AddFavorite(url,title);
  } else if (navigator.appName == "Netscape") {
    window.sidebar.addPanel(title,url,"");
  } else {
    alert("Press CTRL-D (Netscape) or CTRL-T (Opera) to bookmark");
  }
}

  $(document).ready(function(){  

	  if ($().fancybox) {	
				  
		  $('a.lightbox').fancybox({
				titleShow: false
		  });			

	  }

	  $('#sidebar ul li:first,#sidebar02 ul li:first').addClass('h2first');	  
	  $('#midle .post:last').css({'margin-bottom':'0'});
	  
  });
