//Sliding Div
		
	jQuery(document).ready(function() {
			$('#store-info').hide();
			$('.store-info-tog').click(function() {
			$('#store-info').slideToggle('normal');
			return false;
			});
		});
		
	
jQuery(function ($) {
$(".tog a").click(function () {
$(this).toggleClass("expanded");
});
});


jQuery(function ($) {
$("a").filter(function() {
    return this.hostname && this.hostname !== location.hostname;
}).attr('target', '_blank');
});
	
//End JS

