document.write('<script type="text/javascript" src="http://www.bluebeck.jp/2011/wp-content/themes/cms/common/js/jquery.page-scroller.js" charset="utf-8"><\/script>');
document.write('<script type="text/javascript" src="http://www.bluebeck.jp/2011/wp-content/themes/cms/common/js/yuga.js" charset="utf-8"><\/script>');

// wink effect
jQuery(function($){
  $(".wink").hover(function(){
    $(this).css("opacity", "0.2");
    $(this).css("filter", "alpha(opacity=20)");
    $(this).fadeTo("slow", 0.8);
  });
});

// back to top
virtualTop = 0;

//
jQuery(document).ready(function() {
 $("h3.title").hover(function(){
		$(this).css({
			"cursor" : "pointer",
			"color" : "#003F96",
		 "text-shadow" : "0 0 5px #B5BAC6",
		});
	},function(){
		$(this).css({
		 "cursor" : "default",
		 "color" : "#444",
			"text-shadow" : "none",
	 });
	});
	$("section.service div").css("display","none");
	$("h3.title").click(function(){
		$(this).next().slideToggle("slow");
		//$(this).next().css("display","block");
	});
});
