/* SiDZi - JS Document */

/*
	=======================================================
	  Title:    www.toyotaclubserbia.com
	  Version:  2.0
	-------------------------------------------------------
	  File:     tcs-magic.js
	  Type:     text/js
	  Author:   PlumTS Inc.
	------------------------------------------
	  Description: TcS JS file - Magic stuff
	-------------------------------
	  Modified:
	=======================================================
*/
$(document).ready(function () {
	$('#h_l_p_m_yt a, #h_l_p_m_fb a, #h_l_p_m_t a, #h_r_p_m_mail a, #h_r_p_m_phone a, #h_r_p_m_sitemap a').append('<span class="hover" />').each(function () {
		var $span = $('> span.hover', this).css('opacity', 0);
		$(this).hover(function () {
			// on hover
			$span.stop().fadeTo(500, 1);
			}, function() {
			// off hover
			$span.stop().fadeTo(500, 0);
		});
	});
});

