﻿var VichyStorelocator = {
	
	init : function(){
		
		VichyStorelocator.initImgBehaviour();
	},
	
	initImgBehaviour : function(){
		//IMG ROLLOVER AND ROLLOUT
		$('a.linkImg').bind('mouseenter', imageBehaviour.rollOver);
		$('a.linkImg').bind('mouseleave', imageBehaviour.rollOut);

	}
};


jQuery(document).ready(function(){
	
});

