$(function() {
   $('.product_left a').lightBox({
	overlayBgColor: '#FFF',
	overlayOpacity: 0.6,
	imageLoading: '/img/layout/lightbox/lightbox-ico-loading.gif',
	imageBtnClose: '/img/layout/lightbox/lightbox-btn-close.gif',
	imageBtnPrev: '/img/layout/lightbox/lightbox-btn-prev.gif',
	imageBtnNext: '/img/layout/lightbox/lightbox-btn-next.gif',
	imageBlank: '/img/layout/lightbox/lightbox-blank.gif',
	containerResizeSpeed: 350,
	txtImage: 'Bild',
	txtOf: 'von'
   });
});


function basketCheckAllItems(){
	$("INPUT[@name=remove][type='checkbox']").attr('checked', true);	
}

$(document).ready(function(){
	
	$("#modal").click(function(event){
		$("#modal").remove();
	});
	
	$("#close_user_message").click(function(event){
		$("#modal").remove();
	});
	
});


$(document).ready(function(){
	// Text aus E-Mail Feldern löschen
	
	var firstClearedLogin = false;
    $("#login_email").focusin(function() {
    	if(firstClearedLogin == false){
    		$("#login_email").val('');
    		firstClearedLogin = true;
    	}
   });
    
	var firstClearedNewsletter = false;
    $("#newsletter_email").focusin(function() {
    	if(firstClearedNewsletter == false){
    		$("#newsletter_email").val('');
    		firstClearedNewsletter = true;
    	}
   });

	
});


