$(document).ready(function() {
  
  // Rollovers für die Hauptnavigation
	$(".rollover").each(function() {
		if($(this).parent().attr('href') == location.pathname + location.search) {
        $(this).removeClass("rollover");
        this.src = this.src.replace(".png","_over.png");
		}
	});

	$('.rollover').preload({find: '.png', replace: '_over.png'});
    
	$(".rollover").hover(
		function() {
			this.src = this.src.replace(".png","_over.png");
    	},
		function() {
			this.src = this.src.replace("_over.png",".png");
		}
	);

	// Scrollbars
	// $('#work-scrollarea').jScrollPane();
	// $('#service-referenzen-scrollarea').jScrollPane();
});
