$(window).ready(function(){
				
				$('#accordion ul li').hover(function(){							
							if($(this).attr('class') != 'actives'){																																									
										$('#accordion ul li .name').show();																																									
										$('#accordion').addClass('acc_bg');							
										$('#accordion ul li').stop(true,true).animate({ "width": 65 }, 1000);						
										$('#accordion ul li').removeClass('actives');			
										$('#accordion ul li .name a').hide();
										$('#accordion ul li .detials').stop(true,true).hide();						
										$(this).stop(true,true).animate({ "width": 310 }, 1000);
										$(this).addClass('actives');
										$(this).children('.detials').show('slow');
										$(this).children('.name').hide();							
							}							
				},function(){});			
				

});	

$(document).ready(function() {
	var $loading = $('<img src="http://perlabella2.paxrodentia.com/images/shared/loading.gif" alt="loading">');

	$('#mainBar .wheretobuy a, #navMain a.wheretobuy, div#sideBar .wheretobuy a').each(function() {
		var $dialog = $('<div></div>')
			.append($loading.clone());
		var $link = $(this).one('click', function() {
			$dialog
				.load($link.attr('href'))
				.dialog({
					title: $link.attr('title'),
					width: 515,
					height: 530,
					modal: true,
					zIndex: 9999,
				});

			$link.click(function() {
				$dialog.dialog('open');

				return false;
			});

			return false;
		});
	});
});
