ddaccordion.init({
	headerclass: "block", 
	contentclass: "block_content", 
	revealtype: "mouseover", 
	mouseoverdelay: 200,
	collapseprev: true, 
	defaultexpanded: [],
	onemustopen: false, 
	animatedefault: true,
	persiststate: true, 
	toggleclass: ["", "openpet"],
	togglehtml: ["none", "", ""], 
	animatespeed: "fast",
	oninit:function(expandedindices){},
	onopenclose:function(header, index, state, isuseractivated){ 
		setFooter();
	}
})

$(document).ready(function(){
$("ul.product_images li").hover(function() {
	$(this).css({'z-index' : '10'});
	$(this).find('img').addClass("hover").stop()
		.animate({
			marginTop: '-80px', 
			marginLeft: '-80px', 
			top: '50%', 
			left: '50%', 
			width: '129px', 
			height: '129px'
		}, 200);
	} , function() {
	$(this).css({'z-index' : '0'});
	$(this).find('img').removeClass("hover").stop()
		.animate({
			marginTop: '0', 
			marginLeft: '0',
			top: '0', 
			left: '0', 
			width: '80px', 
			height: '80px' 
		}, 400);
});

});

$(document).ready(function(){
$("li.img_effect").hover(function() {
	$(this).css({'z-index' : '900'});
	$(this).find('img').addClass("hover").stop()
		.animate({
			marginTop: '-90px', 
			marginLeft: '-90px', 
			top: '50%', 
			left: '50%', 
			width: '170px', 
			height: '170px'
		}, 100);
	} , function() {
	$(this).css({'z-index' : '0'});
	$(this).find('img').removeClass("hover").stop()
		.animate({
			marginTop: '0', 
			marginLeft: '0',
			top: '0', 
			left: '0', 
			width: '129px', 
			height: '129px'
		}, 200);
});
});
