$(document).ready(function() {
  $('#home a').mouseenter(function() {
    $('#home').css('background', 'transparent url(images/sprite.jpeg) 0 0 no-repeat');
  }).mouseleave(function() {
    $('#home').removeAttr('style');
  });
  
  $('#work a').mouseenter(function() {
    $('#work').css('background', 'transparent url(images/sprite.jpeg) 0 -602px no-repeat');
  }).mouseleave(function() {
    $('#work').removeAttr('style');
  });
  
  $('#cv a').mouseenter(function() {
    $('#cv').css('background', 'transparent url(images/sprite.jpeg) -470px 0 no-repeat');
  }).mouseleave(function() {
    $('#cv').removeAttr('style');
  });
  
  $('#contact a').mouseenter(function() {
    $('#contact').css('background', 'transparent url(images/sprite.jpeg) -470px -602px no-repeat');
  }).mouseleave(function() {
    $('#contact').removeAttr('style');
  });
  
  $('p.work_title').live('click', function() {
    if($(this).next().attr('class') == 'work_content down') {
      $(this).children('span').text('+');
      $(this).next().slideUp('fast');
      $(this).next().attr('class', 'work_content');
    }
    else {
      $('.work_content').slideUp('fast');
      $('p.work_title').children('span').text('+');
      $(this).children('span').text('-');
      $('.work_content').attr('class', 'work_content');
      $(this).next().attr('class', 'work_content down');
      $(this).next().slideDown('fast');
    }
  });
  
});