$(document).ready(function(){
//$('.bwWrapper').BlackAndWhite();
$('#nav li').hover(
function(){
$(this).children('ul').fadeIn(100);
}, function(){
$(this).children('ul').fadeOut(100);
}
);
$('.roundedcorner').each(function(){
$(this).append("
");
});
$('.roundedcornertable td .shot').each(function(){
$(this).append("
");
});
$('.profileimage').each(function(){
$(this).append("
");
});
$('.clientlisting ul li .projects li').click(function(){
window.location.href = $(this).find('a:first').attr('href');
return true;
});
$('.clientlisting ul li').click(function(){
if($(this).find('.projects li').size() > 1){
$(this).find('.projects').slideDown('fast');
return false;
}
});
});
$(window).load(function(){
var newheight = $('.threecoldetail').outerHeight(true);
if(newheight < 500) {
newheight = 500;
}
$('.cms-152cms-child-148 .threecollisting').height(newheight-15);
$('.cms-152cms-child-148 .rightcol').height(newheight-15);
});