function RotateImage()
{
  jQuery('#infoText').cycle(
    {
      fx: 'scrollHorz',
      next: '#cycleRight',
      prev: '#cycleLeft',
      timeout: 30000
    });
}

jQuery(document).ready(function() {

	RotateImage();

	$(".log_out_box #id1").focus(function() {
		if ( $(this).val() == 'Tast inn din e-postadresse' )
			$(this).val('');
	}).blur(function() {
		if ( $(this).val() == '' )
			$(this).val('Tast inn din e-postadresse');
	});
	$(".log_out_box #id2").focus(function() {
		if ( $(this).val() == 'Passord' )
			$(this).val('');
	}).blur(function() {
		if ( $(this).val() == '' )
			$(this).val('Passord');
	});

});

