	function Menu_clicked( objectId ){
		obj = document.getElementById(objectId);

		if( obj.style.display == 'none' ) {
			obj.style.display = 'block';
			obj.previousSibling.previousSibling.style.backgroundImage = 'url(/images/arrow_top.gif)';
		} else {
			obj.style.display = 'none';
			obj.previousSibling.previousSibling.style.backgroundImage = 'url(/images/arrow_down.gif)';
		}
	}

	function Country_changed( hyperlink ) {
		windows.location = hyperlink;
	}

	function ChangeContentLanguage( english ) {
		if( english ) {
			document.getElementById('englishcontent').style.display = 'block';
			document.getElementById('owncontent').style.display = 'none';
		} else {
			document.getElementById('englishcontent').style.display = 'none';
			document.getElementById('owncontent').style.display = 'block';
		}
	}
    $(document).ready(function(){
        $(".supplier-news").hover(function(){
            $(this).addClass("hover");
        },function(){
            $(this).removeClass("hover");
        });
    });
