
/* =======================================

	Common Javascript

 -----------------------------------------
	INDEX
 -----------------------------------------
	FAQ Unit
	
	Mouse Over
	
	Fancybox

========================================== */


/* FAQ Unit
========================================== */
$(function(){
	$('.faqUnit dl dt.question a').click(function () {
		$(this).parent().parent().parent().find('dl dd.answer').toggle("fast");
		return false;
	});
});


/* Mouse Over
========================================== */
$(function() {
  var image_cache = new Object();
  $(".swap").each(function(i) {
    var imgsrc = this.src;
    var dot = this.src.lastIndexOf('.');
    var imgsrc_on = this.src.substr(0, dot) + '_on' + this.src.substr(dot, 4);
    image_cache[this.src] = new Image();
    image_cache[this.src].src = imgsrc_on;
    $(this).hover(
      function() { this.src = imgsrc_on; },
      function() { this.src = imgsrc; });
  });
});


/* Fancybox
========================================== */
$(function() {
	$("a.formImage01").fancybox();
});

