$(window).bind( 'load', function() {

	$('.menu li:last').addClass('last');
	$('.characteristic-list-bg1 ul li:last').addClass('last');
	
	$('.search-block .input1').click( function(){ if ( $(this).attr('value') == 'Поиск по сайту...' ) $(this).attr('value', ''); } );		
	$('.search-block .input1').blur( function(){ if ( $(this).attr('value') == '' ) $(this).attr('value', 'Поиск по сайту...'); } );
	
	$('.slide-show').cycle({ fx: 'fade', speed: 1500, timeout:  1000 })
	
	$('a[rel="gallery"], .gallery').fancybox({ 'titleShow':false, 'overlayShow' : false, 'zoomSpeedIn' : 600, 'zoomSpeedOut' : 500, 'easingIn' : 'easeOutBack', 'easingOut' : 'easeInBack' });
	
	$('.sub-cat-ul li.active').parent().css( 'display','block' );
	
	$('input[alt="Регистрация"]').click( function() {

		if( $('#password').attr('value') != $('#password2').attr('value') ) {
		
			alert( 'Пароли не совпадают.' );
			
			return false;
		
		}

	} );
	
	$('#delivery_form').submit( function() {
	
			var $form = $(this);
			var valudator = true;
			
			/*$.each( $( '.required', $form), function( index, data ) {
			
				  if ( data.value == '' ) valudator = false;
			
			} );*/
			
			if ( valudator ) {
		
					return true;
			
			} else {
				
				alert( 'Пожалуйста, заполните все обязательные поля.' );
				return false;
			
			}
	
	} );
	
	
	/* in cart */
	
	function incartmessege() {
	
		alert('Товар добавлен в корзину.');	
	
	}
	
			$('.addtocart').click( function(){

				hax('index.php?option=com_cart&view=addtocart&tmpl=component&id=' + $(this).attr('item_id'), { id:'small-cart', anticache:'true', notitle:'true', nohistory:'true' } );
				incartmessege();
				
			} );
			
			
			$('.buy-button').click( function(){

				hax('index.php?option=com_cart&view=addtocart&tmpl=component&id=' + $(this).attr('item_id'), { id:'small-cart', anticache:'true', notitle:'true', nohistory:'true' } );
				incartmessege();
			
			} );
			
	
	/* / in cart */
	
	
	/* Редактирование количаства */
		
			$('.number').blur( function() {
			
			
				hax('index.php?option=com_office&view=cart&task=changeitem&tmpl=component&ajax=1&item_id=' + $(this).attr('item_id') + '&quantity=' + $(this).attr('value'), { id:'ajaxorder', anticache:'true', notitle:'true', nohistory:'true' } );
				
			
			} );
			
			$('.delete').click( function() {
			
			
				hax('index.php?option=com_office&view=cart&task=changeitem&tmpl=component&ajax=1&item_id=' + $(this).attr('item_id') + '&quantity=0', { id:'ajaxorder', anticache:'true', notitle:'true', nohistory:'true' } );
				
			
			} );
		
	/* / Редактирование количаства */
	
	
	sAccordion({
	
		container : 'sAccordion', // ID du container
		activeContent : '', // Accordeon ouvert par defaut
		speed : 'slow' // vitesse de l'effet slideToggle ( slow, medium, speed )
		
	});	
	
		
});
