jQuery(document).ready(function(){
  

  // Fix for PNG transparency issue in IE when crossfading
var i;
for (i in document.images) {
    if (document.images[i].src) {
        var imgSrc = document.images[i].src;
        if (imgSrc.substr(imgSrc.length-4) === '.png' || imgSrc.substr(imgSrc.length-4) === '.PNG') {
            document.images[i].style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled='true',sizingMethod='crop',src='" + imgSrc + "')";
        }
    }
}  
  
  var path = window.location.pathname;
  
 if (path.indexOf('services/') >= 0) {
    jQuery('#services').css({'background-position' : '20px bottom' });
    jQuery('#services-popup').fadeIn();
} else {
	jQuery('#services').mouseover(function(){ jQuery('#services-popup').fadeIn(); });
	jQuery('#services').mouseout(function(){ jQuery('#services-popup').fadeOut(); });
}

 if (path.indexOf('portfolio/') >= 0) {
    jQuery('#showcase').css({'background-position' : '-105px bottom' });
    jQuery('#showcase-popup').fadeIn();
} else {
	jQuery('#showcase').mouseover(function(){ jQuery('#showcase-popup').fadeIn(); });
	jQuery('#showcase').mouseout(function(){ jQuery('#showcase-popup').fadeOut(); });
}
  
  if (path.indexOf('company/') >= 0) {
    jQuery('#company').css({'background-position' : '-260px bottom' });
    jQuery('#company-popup').fadeIn();
} else {
	jQuery('#company').mouseover(function(){ jQuery('#company-popup').fadeIn(); });
	jQuery('#company').mouseout(function(){ jQuery('#company-popup').fadeOut(); });

}
	
  if (path.indexOf('contact-us/') >= 0) {
    jQuery('#contact').css({'background-position' : '-375px bottom' });
    jQuery('#contact-popup').fadeIn();
} else {
	jQuery('#contact').mouseover(function(){ jQuery('#contact-popup').fadeIn(); });
	jQuery('#contact').mouseout(function(){ jQuery('#contact-popup').fadeOut(); });

}

  if (path.indexOf('blog/') >= 0) {
    jQuery('#blog').css({'background-position' : '-524px bottom' });
    jQuery('#blog-popup').fadeIn();
} else {
	jQuery('#blog').mouseover(function(){ jQuery('#blog-popup').fadeIn(); });
	jQuery('#blog').mouseout(function(){ jQuery('#blog-popup').fadeOut(); });

}	

  if (path.indexOf('tag/') >= 0) {
    jQuery('#blog').css({'background-position' : '-524px bottom' });
    jQuery('#blog-popup').fadeIn();
} else {
	jQuery('#blog').mouseover(function(){ jQuery('#blog-popup').fadeIn(); });
	jQuery('#blog').mouseout(function(){ jQuery('#blog-popup').fadeOut(); });

}	

  if (path.indexOf('category/') >= 0) {
    jQuery('#blog').css({'background-position' : '-524px bottom' });
    jQuery('#blog-popup').fadeIn();
} else {
	jQuery('#blog').mouseover(function(){ jQuery('#blog-popup').fadeIn(); });
	jQuery('#blog').mouseout(function(){ jQuery('#blog-popup').fadeOut(); });

}	
	
	jQuery('ul#portfolio').innerfade({
			speed: 1000,
			timeout: 7500,
			type: 'random_start',
			containerheight: '285px',
			show_filmstrip: false
		});	
	
});

