// reset.js

if(typeof jQuery != 'undefined') {
	
	// applying png-fix in ie6 only
	$(document).ready(function() {
		if($.browser.msie && parseInt($.browser.version) < 7 && typeof DD_belatedPNG != 'undefined') {
			DD_belatedPNG.fix('img, .pngfix');
		}
	});
	
	var IE6UPDATE_OPTIONS = {
		icons_path: 'http://static.ie6update.com/hosted/ie6update/images/',
		message:  'Internet Explorer benötigt eine Aktualisierung um die Website fehlerfrei anzeigen zu können. Klicken Sie hier um zu aktualisieren...'
	}
	
	// ie6 update script
	$(document).ready(function() {
		if($.browser.msie && parseInt($.browser.version) < 7) {
			$.get(
				'http://static.ie6update.com/hosted/ie6update/ie6update.js',
				null,
				function() {
					
				},
				'script'
			);
		}
	});
}
