$(document).ready(function() {
   // do stuff when DOM is ready
   
		// Use this example, or...
		$('a[rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
		// This, or...
		//$('#gallery a').lightBox(); // Select all links in object with gallery ID
		// This, or...
		//$('a.lightbox').lightBox(); // Select all links with lightbox class
		// This, or...
		//$('a').lightBox(); // Select all links in the page
		// ... The possibility are many. Use your creative or choose one in the examples above
	
	/*
	$("#pm_hersteller").change(function(){
        var id_hersteller=$(this).children('option:selected').val();
        $("#pm_typ").load("./php/ajax.php",{id_hersteller: id_hersteller, s: 'pm_t'});
        $("#pm_produkt").html('<option value="Produkt">Produkt</option>');
    });
      
    $("#pm_typ").change(function(){
        var id_hersteller=$("#pm_hersteller").children('option:selected').val();
        var id_typ=$(this).children('option:selected').val();
        $("#pm_produkt").load("./php/ajax.php",{id_hersteller: id_hersteller,id_typ: id_typ, s: 'pm_p'});
    });
    
    $("#pm_produkt").change(function(){
        var id_produkt=$("#pm_produkt").children('option:selected').val();
        $("#preis").load("./php/ajax.php",{id_produkt: id_produkt,s: 'p_p'});
        $("#artnr").load("./php/ajax.php",{id_produkt: id_produkt,s: 'p_artnr'});
    });
    */
    

});
