
function showHide( toShow, toHide )
{
	for ( var iElem = 0; iElem < toShow.length; ++iElem )
	{
		var params = toShow[ iElem ];
		$( params[ 0 ] ).css( "display", params[ 1 ] );
	}
	
	for ( var iElem = 0; iElem < toHide.length; ++iElem )
	{
		var accessor = toHide[ iElem ];
		$( accessor ).css( "display", "none" );
	}	
}

/* Attaching image links */
$(document).ready(function() 
{
	$( "a.image-popup" ).colorbox(
    {
        'open':false,
        'current': "",
        'previous': "обратно",
        'next': "далее",
        'close': "закрыть",
        'opacity': 0.5
    }); 
    
    
    $("a.content-popup").colorbox(
    {
		width: "90%",		
		'current': "",
        'previous': "",
        'next': "",
        'close': "",
        'opacity': 0.5			
    });
});

function goUrl( url )
{
    document.location = url;
}