// Nytrex JS
//=============================================================================


//jQuery section
//=============================================================================

$(document).ready(function()
{

	// Load flash with jQuery SWF object
	if ($('.homePage').length != 0)
	{
		$('#sliderSWF').flash({
			swf: 'images/slider.swf',
			width: 197,
			height: 277
		});
	}
	if ($('.slidersPage').length != 0)
	{
		$('#sliderSWF').flash({
			swf: 'images/slider.swf',
			width: 157,
			height: 220
		});
		$('#sliderLorrySWF').flash({
			swf: 'images/slider_lorry.swf',
			width: 343,
			height: 198
		});
	}
	if ($('.trailerPlatesPage').length != 0)
	{
		$('#trailerPlatesSWF').flash({
			swf: 'images/trailer_plates.swf',
			width: 343,
			height: 198
		});
	}


	// Accordion menu init
	//------------------------------------------------------------------------
	if ($('#accordion').length != 0)
	{
		$("#accordion").accordion();

		$( "#accordion").accordion( "option", "autoHeight", false );

		$('.accordion .head').click(function() {
			$(this).next().toggle(2000);
			return false;
		}).next().hide();

	}

});


// end jQuery section
//--
