/*function initMenu() {
  $('.jd_menu ul').hide();
  
    $('.jd_menu .first').bind('mouseleave', function() { $('.jd_menu ul').hide();  });
  
  $('.jd_menu li a').mouseover(
    function() {
        $(this).next().slideToggle('fast');
      }
    );
  }
  
$(document).ready(function() {initMenu();});
*/

function showprovice (sProvince) {
    $('#views_salesnetwork .province').hide();
    $('#province_'+sProvince).show();
}

function preload(images) {
    if (typeof document.body == "undefined") return;
    try {
        var div = document.createElement("div");
        var s = div.style;
        s.position = "absolute";
        s.top = s.left = 0;
	s.width = s.height = '1px';
        s.visibility = "hidden";
	s.overflow = "hidden";
        document.body.appendChild(div);
        for (var i = 0; i < images.length; i++) div.innerHTML += "<img src=\"" + images[i] + "\" />";
    } catch(e) {showprovice
        // Error. Do nothing.
    }
}

function bindnews () {
	
	$('.news.dropdowns .heading').bind('click', function () {
		
		if ( $(this).parent().find('.fulltext').html() != '<p>.</p>') {
			if ( $(this).parent().hasClass('vis') )
				$(this).parent().removeClass('vis');
			else
				$(this).parent().addClass('vis');
		}
		return false;
		
		});
	}

		$(document).ready(function() {

		
			sStr=window.document.location.href;
			aTemp = sStr.split('#');
			sAnchor = aTemp[1];
			if (sAnchor) {
			  showprovice (sAnchor);
			  if ($('#news_'+sAnchor+' .fulltext').html() != '<p>.</p>') {
				$('#news_'+sAnchor).addClass('vis');
			  }
			  
			}

			bindnews();
                        //alert($('#product .bigimg img').width());
                        //$('#product .bigimg').css('width',$('#product .bigimg img').width()+'px');

                        $('#product .bigimg img').load( function () { $('#product .bigimg').css('width',$('#product .bigimg img').width()+'px'); } );


			
			if ($('#img').is(':visible')) {
			  arr = new Array(
			    '/i/content/top1/5_mattancherry_museum.jpg',
			    '/i/content/top1/6_pagoda.jpg',
			    '/i/content/top1/2_chilis.jpg',
			    '/i/content/top1/8_vitebsk.jpg',
			    '/i/content/top1/1_al_garhoud.jpg',
			    '/i/content/top1/3_ivo.jpg',
			    '/i/content/top1/4_library.jpg',
			    '/i/content/top1/7_umbra.jpg'
			  );
			  preload(arr);
			}
			
			$("a.fotoimg").fancybox({ 'hideOnContentClick': true, 'overlayShow': false,  'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'zoomOpacity': true });

			$('#slideshow').slideshow({
				timeout: 10000,
				type: 'random',
				pauselink: 'pause2'
			});
	        });
		
