$(document).ready(function(){
	/* 
	 * Product Page Sub menu
	 *
	 */
	if ($(".accordion .head").length) {  	 
		$(".accordion .head").click(function() {
			$(this).next().slideToggle("fast");
		});	
		$(".accordion .subhead").click(function() {
			$(this).next().slideToggle("fast");
		});	
		
        $(".accordion .subhead").mouseover(function() {			
			$(this).css('color','#993333');
		});
		$(".accordion .subhead").mouseout(function() {			
			$(this).css('color','#333333');
		});	

		$(".accordion .submenu_current").parent().slideDown();		

		$(".accordion .submenu_current").parent().siblings(".subhead").css('color','#993333').unbind('mouseout');		

	}
	
    /*
	 * Eye Rollover
	 *
	 */
	if ($(".eye a").length) {  	 
	 

		var offsetX = 20;
		var offsetY = 80;
	
		$('.eye a').hover(function(e) {
			var href = $(this).attr('rel');
		
			$("body").append('<p id="screenshot"><img src="' + href + '" alt="Preview ExamVision" width="272" /></p>');
			$("#screenshot")				
				.css('top', e.pageY - offsetY)
				.css('left', e.pageX + offsetX)
				.fadeIn("slow");
		
		}, function() {
			$('#screenshot').remove();
		});
	
		$('.eye a').mousemove(function(e) {
			$("#screenshot").css('top', e.pageY - offsetY).css('left', e.pageX + offsetX);
		});

		$('.eye a').click(function() {	
            return false;
		});
	}

     $('#flip-up-working').cycle();

});
