/*
var DEF_VAL = "livesuche."; // Default Value
var AUTOSAVE_URL = "de.aj82.www" // Autosave URL
var NUM_RESULTS = 5 // Number of Results

var isSafari = ((parseInt(navigator.productSub)>=20020000)&&     // detecting WebCore
               (navigator.vendor.indexOf("Apple Computer")!=-1));

var suche = {
	'input#livesearch' : function(element){
		if (isSafari) {
			// changing type to "search"
			element.setAttribute('type', 'search');
			element.setAttribute('placeholder', DEF_VAL);
			element.setAttribute('autosave', AUTOSAVE_URL);
			element.setAttribute('results', NUM_RESULTS);
			element.setAttribute('style', 'width:195px;');
		}
		element.setAttribute('autocomplete', 'off');
	}
};
Behaviour.register(suche);

function start() {
	//liveSearchInit();
}
*/

/*
window.addEvent('domready', function() {
	fs1 = new flickrShow("72057594122443745", "fs217", "grey");
	Behaviour.apply();
});
*/