function IEPngFix(pngimg, gifimg, width, height)
{
	var code = '<img src="'+ gifimg +'" width="' + width + '" height="' + height + '" border="0" style="background:url('+pngimg+') no-repeat 0px 0px;"/>';
	if( navigator.userAgent.indexOf("Opera") > 1 ) document.write(code);
	else
		if( navigator.userAgent.indexOf("MSIE 6") > 1 ) document.write('<img src="'+gifimg+'" width="' + width + '" height="' + height + '" border="0" style="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader (src=' + pngimg + ' , sizingMethod=crop );"/>');
		else
			if(navigator.userAgent.indexOf("MSIE 5") != -1) document.write(code);
			else document.write(code);
}




$(document).ready(function(){
	$('body').pngFix( );

	v1 = false;
	v2 = false;
	
	$('#b_flash').hover(
		function(){ $(this).attr('src', 'img/b_flash1.gif'); },
		function(){ $(this).attr('src', 'img/b_flash.gif'); }
	);
	$('#b_html').hover(
		function(){ $(this).attr('src', 'img/b_html1.gif'); },
		function(){ $(this).attr('src', 'img/b_html.gif'); }
	);
	$('#b_company').hover(
		function(){ if(!v1){$(this).attr('src', 'img/b_tov_gr_r.gif');} },
		function(){ if(!v1){$(this).attr('src', 'img/b_tov_gr.gif');} }
	);
	$('#b_contacts').hover(
		function(){ if(!v2){$(this).attr('src', 'img/b_vizit.gif');} },
		function(){ if(!v2){$(this).attr('src', 'img/b_vizit_n.gif');} }
	);
	/*$('#b_close_w img').hover(
		function(){ $(this).attr('src', 'img/b_close1.gif'); },
		function(){ $(this).attr('src', 'img/b_close.gif'); }
	);*/
	$('#b_close_w img').hover(
		function(){ $(this).attr('src', 'img/closet_r.gif'); },
		function(){ $(this).attr('src', 'img/closet.gif'); }
	);


	$('#b_company').click( function()
	{
		if(!v1)
		{
			$('#w_contacts').hide('medium');
			$('#b_close_w').hide();
			//$('#b_close_gr').hide();

			$('#w_company').show('medium');
			$('#b_close_w').show('slow');
			//$('#b_close_gr'.show('slow');
			v1 = true;
			v2 = false;
			$('#b_company').attr('src', 'img/b_tov_gr.gif');
			$('#b_contacts').attr('src', 'img/b_vizit_n.gif');
			$('#pos_rel').css({"z-index":"5"});
			$('#b_close_w').css({"z-index":"6"});
			//$(this).css({"cursor":"default"});
			//$('#b_contacts').css({"cursor":"default"});
		}
	});

	$('#b_contacts').click( function()
	{
		if(!v2)
		{
			$('#w_company').hide('medium');
			$('#b_close_w').hide();
			//$('#b_close_gr').hide();

			$('#w_contacts').show('medium');
			$('#b_close_w').show('slow');
			//$('#b_close_gr').show('slow');
			v1 = false;
			v2 = true;
			$('#b_company').attr('src', 'img/b_tov_gr.gif');
			$('#b_contacts').attr('src', 'img/b_vizit.gif');
			$('#pos_rel').css({"z-index":"5"});
			$('#b_close_w').css({"z-index":"6"});
			//$(this).css({"cursor":"default"});
			//$('#b_company').css({"cursor":"default"});
		}
	});



	/*$('#b_company').click( function()
	{
		if(!v1 && !v2)
		{
			$('#w_company').show('fast');
			$('#b_close_w').show('slow');
			v1 = true;
			$(this).css({"cursor":"default"});
			$('#b_contacts').css({"cursor":"default"});
		}
	});

	$('#b_contacts').click( function()
	{
		if(!v2 && !v1)
		{
			$('#w_contacts').show('fast');
			$('#b_close_w').show('slow');
			v2 = true;
			$(this).css({"cursor":"default"});
			$('#b_company').css({"cursor":"default"});
		}
	});


	$('#b_close_w').click( function()
	{
		if(v1)
		{
			$('#w_company').hide('slow');
			$('#b_close_w').hide('fast');
			v1 = false;
			$('#b_company').attr('src', 'img/b_tov_gr.gif');
			$('#b_company').css({"cursor":"pointer"});
			$('#b_contacts').css({"cursor":"pointer"});
		}
		if(v2)
		{
			$('#w_contacts').hide('slow');
			$('#b_close_w').hide('fast');
			v2 = false;
			$('#b_contacts').attr('src', 'img/b_vizit_n.gif');
			$('#b_company').css({"cursor":"pointer"});
			$('#b_contacts').css({"cursor":"pointer"});
		}
	});
*/

	$('#b_close_w').click( function()
	{
		if(v1)
		{
			$('#w_company').hide('slow');
		   $('#b_close_w').hide('fast');
			//	$('#b_close_gr').hide('fast');
			v1 = false;
			$('#b_company').attr('src', 'img/b_tov_gr.gif');
			$('#b_company').css({"cursor":"pointer"});
			$('#b_contacts').css({"cursor":"pointer"});
		}
		if(v2)
		{
			$('#w_contacts').hide('slow');
			$('#b_close_w').hide('fast');
			//$('#b_close_gr').hide('fast');
			v2 = false;
			$('#b_contacts').attr('src', 'img/b_vizit_n.gif');
			$('#b_company').css({"cursor":"pointer"});
			$('#b_contacts').css({"cursor":"pointer"});
		}
	});



});

