$(document).ready(function(){
  $('#frm-name').focus(function(){ 
    if($(this).val()=='Ditt namn') {
      $(this).val('');
      $(this).blur(function(){ if($(this).val()=='') { $(this).val('Ditt namn'); } });
    }
  });
  
  $('#frm-email').focus(function(){ 
    if($(this).val()=='Din väns e-post') {
      $(this).val('');
      $(this).blur(function(){ if($(this).val()=='') { $(this).val('Din väns e-post'); } });
    }
  });
  
  $(".feature-normal").hover(
		function() {
		  $(this).css('background', 'url(/style/images/feature-normal-bg.png) no-repeat top left');
		},
		function() {
			$(this).css('background', 'none');
		}
	);
	
	$(".feature-wide").hover(
		function() {
		  $(this).css('background', 'url(/style/images/feature-wide-bg.png) no-repeat top left');
		},
		function() {
			$(this).css('background', 'none');
		}
	);
	
	$(".feature-special").hover(
		function() {
		  $(this).css('background', 'url(/style/images/feature-special-bg.png) no-repeat top left');;
		},
		function() {
			$(this).css('background', 'none');
		}
	);
});