Carnaby International Sales & Distribution
Carnaby International Sales and Distribution is a UK feature film company specialising in worldwide sales with a catalogue of award-winning films and documentaries.
We have built up a fast growing and recognisable brand at all major motion picture and television festivals and markets worldwide, including Cannes, AFM, EFM, Berlinale, The Sundance Film Festival, Toronto, LUFF, MIPCOM and MIPTV.
$(document).ready(function() {
$('#mobile-nav-button').click(function() {
$('#mobile-nav').slideToggle();
});
$('.news_item').hover(function() {
$('#news-img-main').css('background-image', 'url(' + $(this).attr('data-link') + ')')
})
$( window ).scroll(function() {
if ($(document).scrollTop() > 50 ) {
$('body').addClass('scrolled');
} else {
$('body').removeClass('scrolled');
}
});
$('.foo_content').css('width', '33.333333333%');
$(window).resize(function(){
console.log('test');
$('.foo_content').css('width', '33.333333333%');
});
})