// JavaScript Document
$(document).ready(function(){
/*
		$("#pri_menu ul li").ahover({
			moveSpeed: 150,
			toggleSpeed: 250,
			hoverEffect: function() {
				$(this).animate({opacity: 0.5}, 750).animate({opacity: 1.0}, 750).dequeue();
				$(this).queue(arguments.callee);
			}
		});
*/

	$("#header").cycle({
		timeout: 5000
	});
	$("a.popup").toggle(
		function() {
			$("#product_navbar").slideDown("normal");
		},
		function() {
			$("#product_navbar").slideUp("normal");
		}
	);
	$(".product_item a, a.teaser_thumb").colorbox({
		transition: 'fade',
		resize: true,
/*		
		height: '85%',
		width: '85%',
*/		
		maxHeight: '98%',
		maxWidth: '98%'
	});
	$(".prodgrp_box a img").mouseenter(function(){
		$(this).fadeTo("fast",0.5,function() {
			$(this).fadeTo("normal",1);
		});
	});
});
