$(function()
{
// CLICKS
// video placeholder
var videoSwitch = '
';
// Video player (add youtube on click)
$(document).on('click', '.videoSwitch', function(event)
{
// get width and height of image
var thisWidth = $(this).find('> img').width(),
thisHeight = $(this).find('> img').height();
// console.log(thisWidth + ' + ' + thisHeight);
// video embed with new size
var video = '';
// replace image/link with new video
$(this).parent().html(video);
event.preventDefault();
});
// switch back to image on resize
$(window).on('resize', function()
{
$('.bcs_videoBlock > div').html(videoSwitch);
});
// ANIMATIONS
var fronTop = 0;
$('#bcs_mainContent').css('background-position', '50% ' + (100 + ((fronTop/20)) - 35) + '%');
$(window).scroll(function()
{
fronTop = $(this).scrollTop();
$('#bcs_mainContent').css('background-position', '50% ' + (100 + ((fronTop/20)) - 35) + '%');
});
});