// JavaScript Document
//Don't use $ to initiate jQuery in magento
jQuery(document).ready(function(){
	 
	 jQuery("#onlineshops_bar li span").hide();
	 
	 
	 jQuery("#onlineshops_bar li").hover(
	 function(){
		 		 
		 jQuery(this).children("span").show();
		 
	 },function(){
		 jQuery(this).children("span").hide();

	 });


	jQuery('#onlineshops_bar a').each(function(){
		this.parentNode.parentNode.style.cursor = 'pointer';

		var locatie = this.href;
		this.parentNode.parentNode.onclick = function() {
		       window.location = locatie;
		}
	});
});

