 
// jquery
$(function(){

	$('.full-spec-table table tbody tr').hover(function(){
		$(this).addClass('hover')
	}, function(){
		$(this).removeClass('hover')
	})
	
	$('.full-spec-table table tr td:first-child, .full-spec-table table tr th:first-child').css('text-align', 'left')


	$('.products_list_m .item img:first').bind('click', function(){
		document.location.href = $(this).next('.show:first').attr('href');
// 		$(this).next('.show').trigger('click');
	});
	
	$('.products_list_m .item .show').click(function(){
		var parent = $(this).parent();
		parent.find('ul.none').slideToggle();
		parent.find('span.strls').toggleClass('none');

		return false;
	});
	
	
})


$(document).ready(function() {
    $(' .products_list_m .item:nth-child(4)').css('clear', 'both')
	
	
	 
});

 

$(document).ready(function() {
    $(' .photogallery_list .item:nth-child(4)').css('clear', 'both')
	
	
	 
});
