function theSlide(){
//tüm imajlarý (hide) et. 
$('.slideImg').pngFix().css({opacity : 0.0});
//ilk imajý (show) et
$('.slideImg:first').css({opacity : 1.0});
//animasyon aralýðý 3 saniye
setInterval('oSlide()',3000);
}
function oSlide(){
//ilk imajý tanýmla
var current = ($('img.show')?  $('img.show') : $('.slideImg:first'));
//sonraki imajlara git
var next = ((current.next().length) ? ((current.next().hasClass('show')) ? $('.slideImg:first') :current.next()) : $('.slideImg:first'));	
next.css({opacity: 0.0})
	.addClass('show')
	.animate({opacity: 1.0}, 1000);



current.animate({opacity: 0.0}, 1000)
	.removeClass('show');


};



$(document).ready(function() {		
	//Load the slideshow
	theSlide();
	$(document).bind("contextmenu",function(e){  
		return false; 
		});  
});
