$(document).ready(function() {
    $('#teaserSlides').cycle({
		fx: 'fade',
        speed: 2500,
        timeout: 8000
	}); 
    
    /*
    $('#teaserVideo').cycle({
		fx: 'fade',
        speed: 1000,
        timeout: 2000,
        autostop: 4
	});
    */
    
    $('#scroll').cycle({
        fx: 'scrollHorz',
        speed: 800,
        timeout: 5000,
        prev: '#videoPrev',
        next: '#videoNext'
    });
    
    $('#scroll').cycle('pause');
    
    $('#videoPlayList').children().each(function(i) { 
        $(this).bind("click", function() { $('#scroll').cycle(i); });
    });    
    
    $('.callMeBackField').focus(function() {
        $(this).css('backgroundPosition', '3px 100px');
    });
    
    $('.callMeBackField').blur(function() {
        if($(this).val() == '')
            $(this).css('backgroundPosition', '3px center');
    });
    
    $('.callMeBackField').show(function() {
        if($(this).val() != '')
            $(this).css('backgroundPosition', '3px 100px');
    });
    
    $("a.moreProductInfo").fancybox({
        width : 690,
        height: 500
    });
});
