$(document).ready(function() {
    $('form input:text').click(function()
    {
            if ($(this).val()=="Artikelsuche")
            {
                $(this).val("");
            }
        });

$('form input:text').focusout(function()
    {
            if ($(this).val()=="")
            {
                $(this).val("Artikelsuche");
            }
        });



 $("a[rel^='prettyPhoto']").prettyPhoto();

    $('.ClickImg').live('click',function()
    {
            img= new Array();
            img.push(this.src);
                $.prettyPhoto.open(img);
            });
});


