jQuery(document).ready(function() {
   
   cycle_options = {
   	timeout:9000,
   	speed:2000,
   };
   
   jQuery('#video_slideshow').cycle(cycle_options);
   
   video_myitaly = '<object width="590" height="332"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=6915524&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=f0b6b6&amp;fullscreen=1&amp;autoplay=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=6915524&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=f0b6b6&amp;fullscreen=1&amp;autoplay=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="590" height="332"></embed></object>';
   
   video_strappo = '<object width="590" height="332"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=7164750&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=f0b6b6&amp;fullscreen=1&amp;autoplay=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=7164750&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=f0b6b6&amp;fullscreen=1&amp;autoplay=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="590" height="332"></embed></object>';
   
   
   video_fresco = '<object width="590" height="332"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=7334428&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=f0b6b6&amp;fullscreen=1&amp;autoplay=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=7334428&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=f0b6b6&amp;fullscreen=1&amp;autoplay=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="590" height="332"></embed></object>';
   
   
   jQuery('#video_myitaly').click(function()
   {
   		jQuery('#video_main').html(video_myitaly);
   		window.location = '#';
   });
   
   jQuery('#video_strappo').click(function()
   {
   		jQuery('#video_main').html(video_strappo);
   		window.location = '#';
   });
   
     jQuery('#video_fresco').click(function()
   {
   		jQuery('#video_main').html(video_fresco);
   		window.location = '#';
   });
   
});

function getLeaf(url) {
var splited=url.split('?');// remove all the parameter from url
url=splited[0];
return url.substring(url.lastIndexOf("/")+1);// return file name without domain and path
}

jQuery.fn.extend({
 enter: function() {//plugins creation
     return this.each(function() {
       var pth = jQuery(this).find("img")[0];


       jQuery(this).hover(function(){
          jQuery(this).addClass('hover');
          },function(){
              jQuery(this).removeClass('hover');
              });
        });
     }
});

jQuery(function(){  // Document is ready
 jQuery(".video_item").enter();// call the function
});