$(document).ready( function() {
  $('.mainmenu ul li').hover(
	function() { $('ul', this).show(); },
	function() { $('ul', this).hide(); 
  });
  
  $('div#nyhetsvisning div#Hovedtekst img').attr('align', 'right');
});

// VALUE SWAP
jQuery(function() {
    swapValues = [];
    jQuery(".sv").each(function(i){
        swapValues[i] = jQuery(this).val();
        jQuery(this).focus(function(){
            if (jQuery(this).val() == swapValues[i]) {
                jQuery(this).val("");
            }
        }).blur(function(){
            if (jQuery.trim(jQuery(this).val()) == "") {
                jQuery(this).val(swapValues[i]);
            }
        });
    });
});

$(document).ready(function() {
	$('div#Hovedtekst img').attr('align', 'right');

});

