// Slider

		var flashvars = {};
		flashvars.xml = "/cu3er/config.xml";
		flashvars.font = "/cu3er/font.swf";
		var attributes = {};
		attributes.wmode = "transparent";
		attributes.id = "slider";
		swfobject.embedSWF("/cu3er/cu3er.swf", "slider", "790", "240", "9", "expressInstall.swf", flashvars, attributes);


// Zmiany Fotek
    $(document).ready(function() {
      $(".change").mouseover(function() {
        photo = $(this).attr('src');
        newphoto = photo.replace( '_bw', '');
        $(this).attr('src', newphoto);
      }).mouseout(function() {
        $(this).attr('src', photo);
      });
    });
