$(document).ready(function() {

	// slide show
    $('#slideshow').cycle({
		fx:     'fade', 
		speed: 'slow',	
	    next:   '#slideshow' 		
	 });
	});

if (document.images) {
img1on = new Image();
img1on.src = "http://anders.mellbratt.se/wp-content/themes/super-theme/images/logo-on.jpg"; 
img1off = new Image(); 
img1off.src = "http://anders.mellbratt.se/wp-content/themes/super-theme/images/logo-off.jpg";
img2on = new Image();
img2on.src = "http://anders.mellbratt.se/wp-content/themes/super-theme/images/header-portfolio-on.gif"; 
img2off = new Image(); 
img2off.src = "http://anders.mellbratt.se/wp-content/themes/super-theme/images/header-portfolio-off.gif";
img3on = new Image();
img3on.src = "http://anders.mellbratt.se/wp-content/themes/super-theme/images/header-email-on.gif"; 
img3off = new Image(); 
img3off.src = "http://anders.mellbratt.se/wp-content/themes/super-theme/images/header-email-off.gif";
img4on = new Image();
img4on.src = "http://anders.mellbratt.se/wp-content/themes/super-theme/images/header-cv-on.gif"; 
img4off = new Image(); 
img4off.src = "http://anders.mellbratt.se/wp-content/themes/super-theme/images/header-cv-off.gif";
imghelloon = new Image();
imghelloon.src = "http://anders.mellbratt.se/wp-content/themes/super-theme/images/hello-on.jpg"; 
imghellooff = new Image(); 
imghellooff.src = "http://anders.mellbratt.se/wp-content/themes/super-theme/images/hello-off.jpg";

}
function imgOn(imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "on.src");}
}
function imgOff(imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "off.src");}
}




