function ShowLamp( id, lamp_id, type, title, name )
{
	var id ;
	var type ;
	var name ;
	var path ;
	var title ;
	var lamp_id ;
	
	$( 'img#BigPreview' ).hide() ;
	$( 'span#LampName' ).hide() ;
	
	$( 'span#LampName' ).text( name ) ;
	
	$( '.O_o' ).removeClass( 'Activia' ) ;
	$( '#x' + lamp_id ).addClass( 'Activia' ) ;
	
	if ( 1 == type )
	{
		path = '/data/catalog/colors/' ;
	}
	else
	{
		path = '/data/catalog/' ;
	}
	
	if ( -1 != id )
	{
		$( 'img#BigPreview' ).attr( 'src', path + id + '.jpg' ).fadeIn() ;
	}
	else
	{
		$( 'img#BigPreview' ).attr( 'src', '/design/images/none/photo.png' ).fadeIn() ;
	}
	
	$( 'img#BigPreview' ).attr( 'alt', title ) ;
	$( 'img#BigPreview' ).attr( 'title', title ) ;
	
	$( 'img#BigPreview' ).fadeIn() ;
	$( 'span#LampName' ).fadeIn() ;
}

$(document).ready(function()
{
	$('#jCarousel').carouFredSel({
		next	: $('#jCarousel_next'),
		prev	: $('#jCarousel_prev'),
		direction : 'top',
		visibleItems: 3,
		scrollItems: 1
	});

	$("a.fancybox").fancybox({
		'titlePosition'	: 'over'
	});
}) ;
