$(document).ready(function () {
	
	$('#banner span').flash({
		src: 'chernomorka.swf',
    	width: 528,
    	height: 142,
    	wmode: 'transparent',
    	quality: 'high'
	});
	
	$('#banner').click(function(){
		if( ! $.browser.msie && $("#bgr-music").length > 0 )
		{
			asd = $("#bgr-music").clone(true);
			$("#bgr-music").remove( );
		}
		else
		{
			$("body").append( asd );
		}
	});
	
	$('.collection ul').hide( );
	
	$('.collection .trigger').click(function(){
		$(this).parent( ).toggleClass( 'expanded' );
		$('~ ul',this).slideToggle( "fast" );
		return false;
	});
	
	$('.collection ul li a').each(function(){
		var url = location.href.substr( location.href.lastIndexOf( '/' ) + 1 );
		
		if( $(this).attr( 'href' ) == url )
		{
			$(this).addClass( 'active' );
			$(this).parent( ).parent( ).prev( '.trigger' ).click( );
		}
	});
});

