$(document).ready(function() {
	if ($.browser.msie && $.browser.versionNumber < 7) {
		$('#topMenu li').hover(function() {
			if ($(this).children('ul').length) {
				$(this).children('ul').toggle();
			}
		});
	}

	$('#topMenu ul.children li').each(function() {
		if ($(this).children('ul').length) {
			$(this).children('a').append('<i class="has-children"></i>');
		}
	});

	$('.wp-caption a, .fancybox_gallery').fancybox({
		'transitionIn': 'elastic',
		'transitionOut': 'elastic',
		'easingIn': 'easeOutBack',
		'easingOut': 'easeInBack',
		'speedIn': 400,
		'speedOut': 400,
		'overlayShow': false
	});

	$('#link_detailed').fancybox({
		'transitionIn': 'elastic',
		'transitionOut': 'elastic',
		'easingIn': 'easeOutBack',
		'easingOut': 'easeInBack',
		'speedIn': 400,
		'speedOut': 400,
		'overlayShow': false,
		'autoDimensions': false,
		'width': 700,
		'height': 550
	});

	$('.p-trailer').click(function() {
		$.fancybox({
			'padding': 0,
			'autoScale': false,
			'transitionIn': 'elastic',
			'transitionOut': 'none',
			'easingIn': 'easeOutBack',
			'title': this.title,
			'overlayShow': false,
			'width': 680,
			'height': 495,
			'href': this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type': 'swf',
			'swf': {
				'wmode': 'transparent',
				'allowfullscreen': 'true'
			}
		});

		return false;
	});

	$('#socialLinks a').hover(
		function() {
			$(this).animate({
				top: '-3px'
			}, 150)
		},
		function() {
			$(this).animate({
				top: '0'
			}, 150)
		}
		);
});
