
$(document).ready(function () {


   $('iframe').first().css({'margin-left': '32px', 'margin-top': '-63px', 'width' : '807', 'height' : '430'}); 

   slideShow_();

    $('.hvlog img').click(function() {
        $('.hvlog').css({'margin-top': '-62px'})
    });

})

function slideShow_() {

    var div = document.createElement('div');

    
    $('#content').prepend(div);
    $(div).attr("id", "slides");
    $(div).prepend($('.slideshow'));


 $('#slides').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
// fx:     'zoom', 
    //easing: 'easeInBounce', 
                speed:   4000
	});

}


