function gotoSlide(int_Slide, str_Language)
{
	$('#cntContainer').attr('src', './_images/home/cnt_' + int_Slide + '.' + str_Language + '.jpg');
}

$(document).ready(function()
{
	$(".hover").hover(function()
	{
		$(this).attr('src', $(this).attr('src').replace(".off.",".on."));
	},
	function()
	{
		$(this).attr('src', $(this).attr('src').replace(".on.",".off."));
	});
	
	$(".cnt").hover(function()
	{
		$('#cntContainer').attr('src', $(this).attr('src').replace(".off.",".on."));
	});
});
