/**
* JavaScript
*
* @author	Sebastian Müller <sebastian produktivbuero de>
* @date		24/11/2008
*/

$(document).ready(function () {
  $("#footer span").dropShadow({top:2, left:0, opacity:1.0, color:'black'});
  $('ul.gallery a').lightBox({fixedNavigation:true});
  $('ul.gallery li a').append("<img src='images/zoom.png' alt='Bild vergrößern' style='position:absolute; top:5px; left:5px; ' width='30' height='30' />");
});


function openWin(winName,dieUrl,width,height){
  window.open(dieUrl,winName,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width='+width+',height='+height);
}

function sendIndividualForm(action){
 if(action == 'newsletter'){
 myWin = openWin('MyWindow','',440,320);
 document.forms[0].action = 'http://newsletter.x-verleih.de/newsletter/user_register.php';
 document.forms[0].target = 'MyWindow';
 document.forms[0].submit();
 }
}