﻿jQuery(document).ready(function() {

//image carousel
    jQuery('#mycarousel').jcarousel({
                scroll: 1
    });
//player
 $('div#prewvideo a').click(function(){
	var so = new SWFObject("http://www.arhipova.org/ru/wp-content/themes/wp-subdued/videoplayer/videoplayer.swf", "main", "603", "483", "8", "#D4D5D7");
		so.addParam("allowFullScreen", "true");
		so.addVariable("MediaLink", $(this).attr('rel'));
		so.addVariable("image", $(this).attr('href'));
		so.addVariable("logo", "logo/logo.swf");
		so.addVariable("logoLink", "");
		so.addVariable("logoTarget", "_blank");
		so.addVariable("playOnStart", "false");
		so.addVariable("share", "false");
		so.write("playerdiv");
	$('#playerdiv').show(); 
	$('#videoname').empty().html($(this).attr("title"));
	return false;	
});
var firstvid=$("div#prewvideo a:first-child");
$('#videoname').empty().html(firstvid.attr("title"));
return false;

});
