$(function(){

$('img[src*=.png]').ifixpng(); 

/*
if(($(window).height()-250) > $('#col1').height()){
$('#col1').height($(window).height() - 250);
}
*/

$('.maillink').each(function(){

href = $(this).attr('href');
href = href.replace(/-replace./,'@');
href = $(this).attr('href',href);
})

$('#more').mouseover(function(){
$(this).find('.submenu').show()
}).mouseout(function(){
$(this).find('.submenu').hide()
})

images = [
		['1.jpg','© tomski76 @ photocase.de'],
		['2.jpg','© m.edi @ photocase.de'],
		['3.jpg','© mathias the dread @ photocase.de'],
		['4.jpg','© mathias the dread @ photocase.de']
]

$('#headerbg').empty();

$.each(images,function(x,y){
$('<img>').attr(
{'src':'http://www.helga-pasch.de/src/img/'+y[0], 
alt: y[1],
title:'Helga Pasch - Hilfsmittel für Schwangerschaft, Geburt und Stillzeit'}
).appendTo('#headerbg');
})

a = Math.random();
a = $('#headerbg img').length * a;
a = Math.floor(a);

$('#headerbg').cycle({
timeout: 7000,
speed: 5000,
height: 250,
width: 960,
fit: 1,
startingSlide: a
}
)

$('a.fancybox').fancybox({
frameWidth: 605,
frameHeight: 455
})

});


