// JavaScript Document
jQuery.noConflict();
jQuery(document).ready(function(){
	// create slideshow navigation
	var nB = jQuery('#slideshow div.navbar');
	jQuery('#slideshow div.slide').each(function(){
		nB.append('<a href="#">&bull;</a>');
	});
	// init slideshow
	jQuery('#slideshow div.navbar').delay(5000).tabs('#slideshow div.wrapper > div.slide', { 
		effect: 'fade', 
		fadeInSpeed: 1000,
		fadeOutSpeed: 1000,
		rotate: true,
		current: 'active'
	}).slideshow({
		autoplay: true,
		interval: 7000,
		clickable: false
	});
	jQuery('#slideshow div.wrapper, #slideshow div.navbar').show();
	//
	//ie6 pngfix
	if(/msie|MSIE 6/.test(navigator.userAgent)) DD_belatedPNG.fix('#slideshow .navbar a:hover, .title,  #slideshow div.slideinfo_in, a.readmore');
});


