jQuery.noConflict();
jQuery(document).ready(function() {
    jQuery("#in1").focus(function() {
    	if( this.value == this.defaultValue ) {
    		this.value = "";
    	}
    }).blur(function() {
    	if( !this.value.length ) {
    		this.value = this.defaultValue;
    	}
    });
    jQuery("#in2").focus(function() {
    	if( this.value == this.defaultValue ) {
    		this.value = "";
    	}
    }).blur(function() {
    	if( !this.value.length ) {
    		this.value = this.defaultValue;
    	}
    });
    jQuery("#ins1").click(function()
    {
        $(this).val('');
    });
    jQuery("#but_x").click(function() {
    	window.location.href = '/lt/prekiu-katalogas';
    	return false;
    });
    jQuery(".but_basket").click(function() {
    	window.location.href = '/lt/prekiu-krepselis';
    	return false;
    });
    
});
