/*custom Team Effect*/ $(function(){
$(".header .nav .mainnav").eq(3).hover(function(){ $(".header .nav .Application span").css("color","#FAEE0D"); },function(){ $(".header .nav .Application span").css("color","#FAEE0D"); });
});
/*Follow the height of the window size*/ $(function(){
var winHeight=$(window).outerHeight(); if(winHeight>=489){ $(".SSTi-SZGD").css("height",winHeight); } else{ $(".SSTi-SZGD").css("height","489px"); }
$(window).resize(function(){
winHeight=$(window).outerHeight(); if(winHeight>=489){ $(".SSTi-SZGD").css("height",winHeight); }else{ $(".SSTi-SZGD").css("height","489px"); }
});
});