/* JQuery Simple Hovers
and Loading
Copyright Mevinv 2010*/
$(document).ready(function(){
$("#links a").hover(
  function () {
  var content = $(this).attr('class');
    $("#result").html(content);
  } 
);
$("#links a").mouseleave(
  function () {
    $("#result").html($(""));
  } 
);
$("#links a").click(
  function () {
	  if($(this).attr('title') == 'blog')
	  {
		  
	  }
	  else{
  var url = $(this).attr('title');
  var total = "/files/" + url + ".php";
  $("#subcontent").html("<h1>Loading</h1>");
    $("#subcontent").load(total);
	  }
  } 
);


						   });