google.setOnLoadCallback(function() {
$("#Navigation ul a:first-child").addClass("first");
$("#Navigation ul a:last-child").addClass("last");
DD_roundies.addRule('#container', '10px', true);
DD_roundies.addRule('#headertitles', '10px', true);
DD_roundies.addRule('.first', '8px 0 0 8px', true);
DD_roundies.addRule('.last', '0 8px 8px 0', true);
$("#container").css({height:"100%"});
$("body").prepend('

');
$(".VideoItem:eq(0)").slideDown(0);
$(".VideoItem").each(function() {
i = $(".VideoItem").index(this);
$(".video-list").append('
'+$(".VideoItem:eq("+i+")").attr("title")+'');
});
$(".video-show").live("click", function() {
i = $(".video-show").index(this);
$(".VideoItem").slideUp(250);
setTimeout(function() {
$(".VideoItem:eq("+i+")").slideDown();
},250);
});
$(".client-logos img").each(function() {
$(this).css({width: "282px", height: "180px"});
});
});