$(document).ready(function () {
  var pathname = window.location.pathname;
  if(pathname == '/solutions/web-solutions/epoa-electronic-plan-action.html' || pathname == '/solutions/web-solutions/e-commerce.html')
  {
	  $('div.field.field-type-filefield.field-field-img').hide();
  }
  $('.views-field-field-photo-fid img.imagecache-Slideshow_small').fadeTo('normal', 0.4);
  $('#edit-submitted-question9-do-you-have-a-site-yes-1').click(function () {
	   if ($('#edit-submitted-question9-do-you-have-a-site-no-1').attr('checked'))
	   {
		   $('#edit-submitted-question9-do-you-have-a-site-no-1').removeAttr("checked");
	   }
  });
  $('#edit-submitted-question9-do-you-have-a-site-no-1').click(function () {
	   if ($('#edit-submitted-question9-do-you-have-a-site-yes-1').attr('checked'))
	   {
		   $('#edit-submitted-question9-do-you-have-a-site-yes-1').removeAttr("checked");
	   }
 });
  $('.view-id-portfolio.view-display-id-page_1 .views-field-field-photo-fid a').hover(function () {
   			 	$(this).find('img').stop().fadeTo('normal', 1);
			}, function () {
    			$(this).find('img').stop().fadeTo('normal', 0.4);
   });
});
