// JavaScript Document

$(document).ready(function(){

//IE6用 背景透過pngの設定
$('body').pngFix();
$('div').pngFix();

//施工実績のプルダウンメニュー設定
$('#top #menu li').hover(function(){
$(this).children('.renew').css('display','block');
},function(){
$(this).children('.renew').css('display','none');
})

//採用情報：丸高工業の施工管理のボックス高さ揃え
$('.rec-skkcomm ul li').each(function(i){
i = i+1;
$(this).addClass("box" + i);
})
listbox1 = $('.rec-skkcomm ul li.box1').height();
listbox2 = $('.rec-skkcomm ul li.box2').height();
if(listbox1 > listbox2){
$('.rec-skkcomm ul li').height(listbox1);
}else{
$('.rec-skkcomm ul li').height(listbox2);
}

})


//Google Analyticsトラッキングコード
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-9342059-15']);
_gaq.push(['_setDomainName', 'none']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);

(function() {
 var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
 ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
 var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

