$(window).load(function() {
	$('#slider').nivoSlider({
		effect:'fade',
		slices:1,
		animSpeed:600, //Slide transition speed
		pauseTime:3000
	});
	$('img.rollover').hover(function() 
	{
		$hoveratr 	= $(this).attr("hover");
		$srcatr 	= $(this).attr("src");
		if( $('hoveratr') != '' )
		{
			$(this).attr("src", $hoveratr );
		}
		else
		{
			$(this).attr("src","images/icons/Verbon_home_button_red.gif");
		}
		
	}, function()
	{		
		$(this).attr("src", $srcatr );
		
		$hoveratr 	= '';
		$srcatr 	= '';
	});

});
