// JavaScript AJAX - Document BY ILKER ÇAPLI
$(document).ready(function(){
	$('#ElkonProducts a.tip').tooltip({ 
		track: true, 
		delay: 0, 
		showBody: true,
		extraClass: "productTip", 
		fade: 500,
		showURL: false 
	}); 
	$('.Div100 *').tooltip({ 
		track: true, 
		delay: 0, 
		showBody: " - ",
		showURL: false 
	}); 
	$('.newsLine *, .newsList *').tooltip({ 
		track: true, 
		delay: 0, 
		showBody: " - ",
		showURL: false 
	}); 
// PRODUCTS/INDEX Thumbnails
	$('img.rollover').css('opacity',0.75);
	$('img.rollover').hover(function() {
			$(this).stop().animate({
				opacity : 1
			}, 600);
		},
		function(){
			$(this).stop().animate({
				opacity : 0.75
			}, 800);
	});
// PRODUCTS/INDEX Thumbnails

/*
// white-space
	$('div.newsLine, div.newsList').css('opacity',0.8);
	$('div.newsLine, div.newsList').hover(function() {
			$(this).stop().animate({
				opacity : 1
			}, 600);
		},
		function(){
			$(this).stop().animate({
				opacity : 0.8
			}, 800);
	});
*/
	
});